How to saperate these overlapping objects ?

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 Kommentare

KALYAN ACHARJYA
KALYAN ACHARJYA am 18 Nov. 2019
Can you elaborate more with the color symbol indicated by marker?
You can use paint?
Namrata Patil
Namrata Patil am 18 Nov. 2019
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.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Image Analyst
Image Analyst am 18 Nov. 2019

0 Stimmen

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 am 22 Apr. 2020

0 Stimmen

1 Kommentar

Namrata Patil
Namrata Patil am 22 Apr. 2020
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.

Melden Sie sich an, um zu kommentieren.

Produkte

Version

R2014a

Gefragt:

am 18 Nov. 2019

Kommentiert:

am 22 Apr. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by