How do we use blockproc to process my image to compute the difference?
2 次查看(过去 30 天)
显示 更早的评论
I want to compare two images and obtain region of interest. How does blockproc work. Does it process all the blocks at the same time? I ended up in an infinite loop while trying to run blockproc.
0 个评论
回答(2 个)
Alberto
2014-9-22
*blockproc* function divide your image in block, you decide the size of the blocks, and applies the function you want to each block. What you get in the end is a single image whith the transformed blocks combined.
0 个评论
Image Analyst
2014-9-22
Blockproc() scans the image with a window and applies some function to the pixels in the window. It normally scans along in "jumps" of the window size but you can program it to move by different distances. The size of the output image is dependent on what function you apply. I attach two demos of it.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!