can blkproc function is used in LBP?
显示 更早的评论
can you explain me fun function in blkproc below:
I = imread('liftingbody.png');
fun = @(x) std2(x)*ones(size(x));
I2 = blkproc(I,[32 32],fun);
figure, imshow(I), figure, imshow(I2,[])
what the function of 'fun' if I use LBP?
thx before
采纳的回答
更多回答(1 个)
Image Analyst
2013-8-2
0 个投票
It takes the standard deviation of a block and replaces every pixel in the block with the standard deviation of that block.
类别
在 帮助中心 和 File Exchange 中查找有关 LBP - Local Binary Patterns 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!