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!