Azzera filtri
Azzera filtri

How to partition an image

2 visualizzazioni (ultimi 30 giorni)
Algorithms Analyst
Algorithms Analyst il 29 Gen 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

Risposta accettata

Image Analyst
Image Analyst il 29 Gen 2013
Use blockproc() with the BorderSize option.
  32 Commenti
Walter Roberson
Walter Roberson il 6 Feb 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 il 6 Feb 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..

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by