How do i fix convex hull on rib part alone in input image

1 次查看(过去 30 天)
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).

采纳的回答

Walter Roberson
Walter Roberson 2015-9-9
%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')
  1 个评论
revathi t
revathi t 2015-9-14
Thanks for your code Sir. It works good. Now i have convex hull fitted image. Is there any way to find lambda1,2 & 3 values from this image? (Because I need these values for further processing. Task is like removing scapula bone from this ribcage convex hull image. Here tubular shape will be considered as rib and plate like shape as scapula. formulas are available. But i need lambda values for substitution. Finally i have to find ribcage volume without scapula)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Bounding Regions 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by