HOW TO MOVE THE DIAGONAL ELEMENTS IN MATRIX (ONE PIXELS) FOR IMAGE PROCESSING

HOW TO MOVE THE DIAGONAL ELEMENTS IN MATRIX (ONE PIXELS) FOR IMAGE PROCESSING

2 Comments

for example
1 2 4
2 5 6
1 3 8
to move the diagonal in one pixel like
8 6 4
3 1 2
1 2 5
and give detail about m*n matrix

Sign in to comment.

 Accepted Answer

I = [1 2 4
2 5 6
1 3 8 ];
ii = 1:size(I,1)+1:numel(I);
I(ii) = I(ii(mod(ii - 2,3)+1));
or
I(eye(size(I))>0) = circshift(diag(I),1);

1 Comment

Thanks a lot sir but i changed the question right now all the elements should change in the diagonal direction for m*n matrix

Sign in to comment.

More Answers (2)

or diag()?

3 Comments

OK, why does your dog have a vest? Just wondering....
So she's not a deer during hunting season :)
Ah - I thought she was like a rescue dog, locating and pulling people from rubble after earthquakes.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!