I have a closed outline How t associate a label for each pixel that exit in the region limited by outline
1 回表示 (過去 30 日間)
古いコメントを表示
I have a closed outline How t associate a label for each pixel that exit in the region limited by outline
0 件のコメント
回答 (2 件)
Matt Kindig
2012 年 6 月 19 日
Can you clarify what you are trying to do? Is the closed outline in an image? In that case, use bwboundaries() to get the pixels on the outline (after appropriate thresholding to black and white and any necessary processing). Or are you trying to get the pixels inside the outline? In that case, use poly2mask().
1 件のコメント
Image Analyst
2012 年 6 月 19 日
I agree. He probably doesn't know that "label" is a word we use to describe connected components labeling, as performed by bwlabel or bwconncomp(). I can't envision the need to use either of these since labeling is probably not needed as far as I can tell. I agree he probably wants "location" not "label" and so should use bwboundaries().
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!