code for sampling an image to form patches

1 visualización (últimos 30 días)
ANCY
ANCY el 31 de Dic. de 2013
Respondida: Image Analyst el 31 de Dic. de 2013
If any one knows the code for sampling an image to make the larg image into small sections then please share it with me.

Respuesta aceptada

Walter Roberson
Walter Roberson el 31 de Dic. de 2013
patch_cell = mat2cell( 8*ones(1,size(IMAGE,1)/8), 8*ones(1,size(IMAGE,2)/8), size(IMAGE,3) );
for 8 x 8 patches.
Then patch_cell{5,19} would be the 5th row of patches, 19th patch over.
  2 comentarios
ANCY
ANCY el 31 de Dic. de 2013
I mean how to make small subdivisions of image from a large image.That is how to make small samples from large sample?If u know the full matlab code for subsampling the image then please share it with me
Walter Roberson
Walter Roberson el 31 de Dic. de 2013
This code does exactly that, using 8 x 8 pixel subdivisions of the image array named IMAGE. If you want to use a different size such as 64 x 64, replace the 8's by 64's.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 31 de Dic. de 2013

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by