Can the matrix be displayed in a way other than imagesc, imshow, image or pcolor commands (similar to the plot command)?
5 次查看(过去 30 天)
显示 更早的评论
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.
3 个评论
采纳的回答
Matt J
2021-6-9
编辑:Matt J
2021-6-9
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 个评论
Matt J
2021-6-10
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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!