How to split an image and rotate quadrants?

3 visualizaciones (últimos 30 días)
Lucas  Buckels
Lucas Buckels el 28 de Mzo. de 2017
Editada: Matt J el 28 de Mzo. de 2017
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

Respuesta aceptada

Matt J
Matt J el 28 de Mzo. de 2017
Editada: Matt J el 28 de Mzo. de 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) );

Más respuestas (0)

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by