Can the matrix be displayed in a way other than imagesc, imshow, image or pcolor commands (similar to the plot command)?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
displaying a matrix by imagesc,imshow,image or pcolor commands is similar to the following figure(serrated line) :

Can the matrix be displayed as a straight line like the plot command?

the matrix is attached.
Akzeptierte Antwort
Matt J
am 9 Jun. 2021
Bearbeitet: Matt J
am 9 Jun. 2021
One possibility is to use pgonCorners (which must be Downloaded)
to find the approximate vertices of the triangle. Then you can do
load Image
vertices=fliplr( pgonCorners(BW,3) );
plot( polyshape( vertices ) );
set(gca,'YDir','reverse')
2 Kommentare
Matt J
am 10 Jun. 2021
In order to have built such images, you would have to have had to have the vertices. You can use those to plot, if you don't throw them away.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
