connected components (or just regionprops) on integer image
3 ビュー (過去 30 日間)
古いコメントを表示
Hi all --
I am attempting to segment an image and then gather statistics (regionprops) on each image object. I have completed the segmentation and there are 110 unique values that are mostly (but not entirely) grouped spatially. My question is: How do I conduct a connected components analysis on this non-binary output? I'd like to avoid running watershed on this because it seems unnecessary to introduce the 0-value borders (thus reducing image information content). Any suggestions?
Thanks, Mike
0 件のコメント
回答 (1 件)
Matt J
2018 年 4 月 13 日
I would do something like this,
vals=unique(yourImage(:));
fun = @(v) regionprops(yourImage==v,...);
stats = cell2mat( arrayfun( fun , vals, 'uni',0) );
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!