Manual form adjustment in matlab

I need to manually segment images in Matlab. I would like to use "impoly", but I basically need to segment rounded objects.

I found exactly what I need in Ali Pashaei's Youtube video, in "FlowImageProcessing toolbox v2.0" he uses 5 points to create an ellipse and then he can adjust it.

You can see this in this video as the SegmentImage.m function. https://youtu.be/R7XtbXAa8LI?t=124

Does anyone know what I should be using to achieve a similar result? Or does anyone know where I can find Mr. Pashai's job?

I found "PulsatileFlow_toolkit" but it does not contain the function I need.

Thanks for answers.

+3


source to share


1 answer


Have you tried imellipse

? It is like a bit impoly

allowing you to work with the ability to drag an ellipse instead of an arbitrary polygon.



0


source







All Articles