How do i fix convex hull on rib part alone in input image
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
revathi t
il 9 Set 2015
Commentato: revathi t
il 14 Set 2015
CT Chest image is my input. I want to fix convex hull on rib cage part. I have separated rib cage part. Then How do i fix convex hull on it? Please help me, I don't know how to proceed this (I'm supposed to use morphological operations).
0 Commenti
Risposta accettata
Walter Roberson
il 9 Set 2015
%note that row number corresponds to Y, not X
[Y, X] = find(RibCagePart);
K = convhull(X, Y);
hullX = X(K);
hullY = Y(K);
hullrows = hullY;
hullcols = hullX;
%to visualize
imagesc(RibCagePart);
plot(hullX, hullY, 'r')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Bounding Regions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!