How to split an image and rotate quadrants?

5 visualizzazioni (ultimi 30 giorni)
How to split an image into 4 quadrants and shift each quadrant one spot in the clockwise direction. Top left quadrant to top right, top right to bottom right and so on

Risposta accettata

Matt J
Matt J il 28 Mar 2017
Modificato: Matt J il 28 Mar 2017
If a,b,c,d are the dimensions of the quadrants (see MAT2CELL )
C=mat2cell(yourImage,[a,b],[c,d]);
newImage=cell2mat( rot90(C,-1) );

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by