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!