Azzera filtri
Azzera filtri

The relative vertical position of the smallest connected black component

1 visualizzazione (ultimi 30 giorni)
Hi guys.... I want your help in MATLAB to find the vertical position of the smallest connected black component.

Risposta accettata

Sean de Wolski
Sean de Wolski il 12 Mag 2011
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

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by