Problem using minboundquad function to create a minimum bounding quadrilateral for a given pointset
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Gowtham HariHara
il 18 Mag 2021
Risposto: Gowtham HariHara
il 26 Mag 2021
I had modified one line in the minboundquad.m function to remove the collinear edges in the pointset.
from
edges = convhull(x,y);
to
edges = convhull(x,y,'Simplify',true);
The main code is
load points2.txt
x = points2(:,1);
y = points2(:,2);
[qx,qy] = minboundquad(x,y)
Result I got is below.
There is some error I could not find out. Can someone help me solve this?
0 Commenti
Risposta accettata
Più risposte (1)
Shiva Kalyan Diwakaruni
il 26 Mag 2021
Hi,
I did not seem to find any error while reproducing and I got the below result after changing minboundquad.m
from
edges = convhull(x,y);
to
edges = convhull(x,y,'Simplify',true);
I got the Warning: Matrix is close to singular or badly scaled. Results may be inaccurate.
Can You explain what your error was?
2 Commenti
Vedere anche
Categorie
Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!