Effacer les filtres
Effacer les filtres

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

7 vues (au cours des 30 derniers jours)
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 commentaires
HG
HG le 9 Juin 2021
at the top of the question I think there is a m.file.

Connectez-vous pour commenter.

Réponse acceptée

Matt J
Matt J le 9 Juin 2021
Modifié(e) : Matt J le 9 Juin 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 commentaires
HG
HG le 10 Juin 2021
what about the irregular shape or a circle ? is it possible to show them ?
I attached the matrixes.
Matt J
Matt J le 10 Juin 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Vector Fields dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by