i've an image of of size 210x240.in the following code i've made one block..but i want many blocks how can i do it?

1 次查看(过去 30 天)
clc;
close all;
I=imread('images1.jpeg');
whos I;
fun = @(block_struct) ...
std2(block_struct.data) * ones(size(block_struct.data));
block=blockproc(I,[8 8],fun);
imshow(block);
i want to divide input image into overlapping blocks of size let say 8x8 like Block1,Block2 and so on ... on the basis of intensity as parameter and after that i want to sort these blocks in the form of list..
can u help me how can i do it? plz provide the required code for it so that i can understand it....
  9 个评论
Raman
Raman 2013-2-13
sir actually i m working on copy move forgery...i need blocks because after sorting the duplicate regions are adjacent in the sorted list...thats y m asking...yet the block size is also not fixed to 6x6...m trying which block size is better for doing all this.. loop concept i understand but
how to make a loop on
block=blockproc(I,[6 6],fun,'BorderSize',[3 3]);
m not getting this.
plz sir can u make a loop on block=blockproc(I,[6 6],fun,'BorderSize',[3 3]); so that i can understand...

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2013-2-12

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by