fitting rectangle through data points
31 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Let's say I have the data as shown in OXY plane(Here, I show 2 examples):
How can I fit the rectangle through data:
0 Kommentare
Akzeptierte Antwort
darova
am 26 Mai 2019
If your data always has V form (look like triangle). Tree corners can be found. Find farthest corners using pdist2()
Divide points into 2 groups. If distance point-corner smaller than radius:
Use polyfit() to calculate coeffiecients of line. What if angle between calculated lines is not 90 degree?
3 Kommentare
Weitere Antworten (1)
Image Analyst
am 25 Mai 2019
What I would try first is to use principal components analysis ("PCA") to identify the two axes. Use pca() if you have the stats toolbox. Then you can fit lines with polyfit() going through the points along each PC. Use the points at the limits to determine where the lines start and stop. Sorry, no I don't have code that does this already - I'd have to develop it just as you would.
Another method you might also try is RANSAC.
1 Kommentar
Siehe auch
Kategorien
Mehr zu Dimensionality Reduction and Feature Extraction finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!