Can the matrix be displayed in a way other than imagesc, imshow, image or pcolor commands (similar to the plot command)?

조회 수: 11 (최근 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
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
HG
HG 2021년 6월 10일
what about the irregular shape or a circle ? is it possible to show them ?
I attached the matrixes.
Matt J
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개)

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by