HOW TO MOVE THE DIAGONAL ELEMENTS IN MATRIX (ONE PIXELS) FOR IMAGE PROCESSING
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
HOW TO MOVE THE DIAGONAL ELEMENTS IN MATRIX (ONE PIXELS) FOR IMAGE PROCESSING
2 comentarios
Respuesta aceptada
Andrei Bobrov
el 12 de Sept. de 2012
Editada: Andrei Bobrov
el 12 de Sept. de 2012
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 comentario
Más respuestas (2)
Sean de Wolski
el 11 de Sept. de 2012
3 comentarios
Sean de Wolski
el 12 de Sept. de 2012
Editada: Sean de Wolski
el 12 de Sept. de 2012
So she's not a deer during hunting season :)
Image Analyst
el 12 de Sept. de 2012
Ah - I thought she was like a rescue dog, locating and pulling people from rubble after earthquakes.
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!