Clear Filters
Clear Filters

How to mapped largest contour from pathlines?

5 views (last 30 days)
I need to find largest contour from the pathline.

Accepted Answer

Image Analyst
Image Analyst on 24 Dec 2022
I don't know what pathline is. But if you can export your contour lines to a binary image, then you can extract the longest one with bwareafilt
longestContour = bwareafilt(binaryImageOfContours, 1); % Get only the blob with most number of pixels.
  11 Comments
DGM
DGM on 31 Dec 2022
Edited: DGM on 31 Dec 2022
If the field is represented with a limitation on maximum density of plotted lines, I don't see how you can discern whether a path is closed by looking at whether a plotted line is closed.
Image Analyst
Image Analyst on 31 Dec 2022
I don't know. We're all just guessing here because he doesn't want to share his original data or code for how the vector field was created or how the contour lines were created. Obviously trying to figure it out from a screenshot is not the best way, and susceptible to the size of the plot on screen, but he's not sharing anything else so what can we do? We have no context at all other than it's a vector field. I'm going to quit soon unless more helpful information is forthcoming.
@Suman If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Performance in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!