フィルターのクリア

How to partition an image

2 ビュー (過去 30 日間)
Algorithms Analyst
Algorithms Analyst 2013 年 1 月 29 日
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

採用された回答

Image Analyst
Image Analyst 2013 年 1 月 29 日
Use blockproc() with the BorderSize option.
  32 件のコメント
Walter Roberson
Walter Roberson 2013 年 2 月 6 日
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 2013 年 2 月 6 日
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..

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by