How to divide images into square grid in matlab?

10 visualizaciones (últimos 30 días)
vina borkar
vina borkar el 16 de Ag. de 2013
Comentada: Image Analyst el 22 de Jun. de 2018
Color images divide in sub parts individual but looking like single image to users. it will possible in matlab?
Basically the image is divided into parts called grids, and each grid will working individual, is this possible?
  1 comentario
Amith Kamath
Amith Kamath el 19 de Ag. de 2013
I'm sorry but I would re-phrase this question so that it is clearer for interested folk to try to answer. Could you please make the question clearer? It usually helps if you also show what you've tried until now.

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 19 de Ag. de 2013

Más respuestas (1)

Ahmet TAvli
Ahmet TAvli el 25 de Abr. de 2018
The question is clear.
Assume, you have your image is 192 x 168 pixels.
You want to divide into 6 equal regions.
An example below:
I = imread('exampleImage.png');
R1 = I(1:64, 1:84);
R2 = I(1:64, 85:168);
R3 = I(65:128, 1:84);
R4 = I(65:128, 85:168);
R5 = I(129:192, 1:84);
R6 = I(129:192, 85:168);
  2 comentarios
drummer
drummer el 22 de Jun. de 2018
Ahmet, how would the image divided into 6 equal regions be shown?
Image Analyst
Image Analyst el 22 de Jun. de 2018
You would use imshow():
imshow(R1);

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by