How to saperate these overlapping objects ?

1 次查看(过去 30 天)
I want to detect concave points of overlapping objects so that I can fit a circle and an ellipse or combination of 2 circles over it.
  2 个评论
KALYAN ACHARJYA
KALYAN ACHARJYA 2019-11-18
Can you elaborate more with the color symbol indicated by marker?
You can use paint?
Namrata Patil
Namrata Patil 2019-11-18
I want to place green circle over circular objects and an ellipse over elliptical objects. But as some objects are overlapping I have to seperate them first by detecting their intersecting points.

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2019-11-18
Why not just use regionprops to look for blobs that have high solidity?
mask = imfill(mask, 'holes');
props = regionprops(mask, 'Solidity', 'MajorAxisLength', 'MinorAxisLength');
allSolidities = [props.Solidity]
allMajorAxesLengths = [props.MajorAxisLength]
allMinorAxesLengths = [props.MinorAxisLength]
nonConvexIndexes = allSolidities < 0.8; % or whatever.
circleIndexes = (allMajorAxesLengths ./ allMinorAxesLengths) < 1.5; % Or whatever.
Circles should have minor and major axes roughly the same.
Adapt as needed.

Image Analyst
Image Analyst 2020-4-22
  1 个评论
Namrata Patil
Namrata Patil 2020-4-22
Thanks for helping. I am facing same error as Steve's code . Ellipse of same size doesn't fit if two cells are overlapped. For that I have to saperate them first.

请先登录,再进行评论。

类别

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

产品


版本

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by