Borrar filtros
Borrar filtros

How to partition an image

2 visualizaciones (últimos 30 días)
Algorithms Analyst
Algorithms Analyst el 29 de En. de 2013
Hi all
I am working on some algorithm to implement it and in one stage I have been confused.Lets say that I have an image 512x512.
I want to make image partitioned in nxn squarre like regions that are overlapped with the same gap g for both image.So n=12 and g=3.
Thanks in Advance

Respuesta aceptada

Image Analyst
Image Analyst el 29 de En. de 2013
Use blockproc() with the BorderSize option.
  32 comentarios
Walter Roberson
Walter Roberson el 6 de Feb. de 2013
The 1028 is due to there being partial block 2 pixels wide. mod(512,6) = 2. That block gets extended by the overlap, 3 pixels before and 3 after, to become a total of 8 pixel. 85 full blocks of 12, plus the partial 8, gives 1028. The 85 is floor(512/6). You need to take this partial block into account unless you request padding of the blocks out to full width.
Algorithms Analyst
Algorithms Analyst el 6 de Feb. de 2013
I am not clear in that point kindly explain it plz with some piece of code.Thanks.I further quantize the colors by using the K-means algorithm with K=16 as described in paper..

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by