The relative vertical position of the smallest connected black component

1 次查看(过去 30 天)
Hi guys.... I want your help in MATLAB to find the vertical position of the smallest connected black component.

采纳的回答

Sean de Wolski
Sean de Wolski 2011-5-12
CC = bwconncomp(~BW);
[junk, idx] = min(cellfun(@numel,CC.PixelIdxList))
[r c] = ind2sub(size(BW),CC.PixelIdxList{idx});
%How do you want to define vertical position? Middle, top bottom
mean(r); %middle by weight
min(r); %top point
max(r); %bottom point

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by