Does blockproc() divide the image into overlapping or non-overlapping blocks?
5 ビュー (過去 30 日間)
古いコメントを表示
So I'm exploring ways to split an image into blocks and applying DCT on each blocks of the image and i came across this example https://www.mathworks.com/help/images/discrete-cosine-transform.html
It uses the blockproc() function to first split the image into 8x8 blocks and apply DCT after. Is the blockproc() function dividing the image into overlapping or non-overlapping blocks since I'm working on copy move forgery detection?
0 件のコメント
回答 (1 件)
Walter Roberson
2019 年 8 月 8 日
In the form used in that example, blockproc() is using non-overlapping blocks.
The blockproc option 'BorderSize' permits you to define overlapping, if you want overlapping.
'BorderSize' A 2-element vector, [V H], specifying the amount of
border pixels to add to each block. V rows are
added above and below each block, H columns are
added left and right of each block. The size of
each resulting block will be:
[M + 2*V, N + 2*H]
The default is [0 0], meaning no border.
By default, the border is automatically removed
from the result of FUN. See the 'TrimBorder'
parameter for more information.
Blocks with borders that extend beyond the edges of
the image are padded with zeros.
2 件のコメント
Guillaume
2019 年 8 月 10 日
Note that not all combinations of window size and sliding step can be achieved this way. The window size minus the sliding step must be a multiple of 2.
Also note, that this means that the image will be automatically padded on all sides with 0s.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!