problem of applying block processing function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
my image is gray scale image of 100*120. my programme is
*fun=@(x) x.*2;
B = blkproc(I,[4 4],[1 1],fun);*
when i'm looking for 1st sub block it gives only a single number, it equals to the twice of (1,1) pixel value of original image. can't i get the twice of 1st 4*4 block.is it possible or not.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 20 Sep. 2013
It gives a single number but you can multiply by ones(blockSize) to expand it. See the attached demos scripts.
8 Kommentare
Image Analyst
am 25 Sep. 2013
You must have a really, really old version of MATLAB. It had a different name back then, something like blkproc, blkprc, or something like that. You need to find out what it's called in your ancient version of MATLAB. Or just upgrade.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!