how to calculate black pixel ratio by dividing image into blocks
1 回表示 (過去 30 日間)
古いコメントを表示
good evening sir
i have a binary image of size 320X640 and i need to divide image into 32X64 blocks ie totally there will be 100 blocks,
i need to calculate ratio of black pixel and white pixel of EACH BLOCK of image and store it in a matrix of size 32X64
plz help me
0 件のコメント
採用された回答
Sean de Wolski
2011 年 3 月 7 日
blkproc(I,[32 64],@(x)sum(~x(:))/sum(x(:)))
Won't the result by 10x10?
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!