Get (automatically) position of pixels that are white in my binary mask image
2 ビュー (過去 30 日間)
古いコメントを表示
Hello, i do have a logical image (since i applied a binary mask) and i would like to have the position (x,y) of all the pixels that are white (background is black), automatically, withouth needing to click it.
I have tried 'bwconncomp' but it gives me the indice pixels (in a cell array) instead of the position and since the image is logical type, it gives an error when i want to transform it into position since its a cell array (i.e ind2sub doesnt works with cell arrays).
0 件のコメント
採用された回答
KALYAN ACHARJYA
2019 年 11 月 11 日
編集済み: KALYAN ACHARJYA
2019 年 11 月 11 日
"Get (automatically) position of pixels that are white in my binary mask image"
Let suppose im1 is a binary image
[r c]=find(im1==1);
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!