how do i divide an image into blocks?
Mostrar comentarios más antiguos
I have this image (2848 x 4288) and i want to divide it into 9 blocks and perform some operations on individual or each block. For example i perform this operations on an image:;
y = rgb2gray(imresize(imread('DSC_0009.jpg'),.2));
z = 255.0 - 1.0 * double(y);
z = z ./5 ;
z2 = imfilter(z, fspecial('average', 15));
z2(z2 > 35) = 35;
z2(z2 < 30) = 0;
surface(z2);
shading interp;
axis ij;
axis tight;
I want to do a similar operation on each of the blocks and output it as well.
thank you.
1 comentario
Rena Berman
el 24 de En. de 2017
(Answers dev) Restored question.
Respuestas (2)
Image Analyst
el 16 de Ag. de 2015
0 votos
See the FAQ for code to perform it two different ways, normal indexing, and the cell2mat() function: http://matlab.wikia.com/wiki/FAQ#How_do_I_split_an_image_into_non-overlapping_blocks.3F
Image Analyst
el 16 de Ag. de 2015
0 votos
You can also use blockproc() if you don't need to store the subimages but just need to perform some operation on them and give you an output image. See attached demos for a variety of ways to use blockproc().
5 comentarios
Rey Kelvin Peralta
el 16 de Ag. de 2015
Editada: Walter Roberson
el 16 de Ag. de 2015
Image Analyst
el 16 de Ag. de 2015
Follow the example of blockproc_demo2 where I use myFilter. You can put whatever code you want into that function, such as the code you showed above.
Rey Kelvin Peralta
el 18 de Ag. de 2015
Image Analyst
el 19 de Ag. de 2015
I don't know. I've never used blender. However using fwrite() or fprintf() you can create any file you want.
Walter Roberson
el 19 de Ag. de 2015
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!