How to display image from 2d matrix?
30 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jane
el 11 de Sept. de 2021
Respondida: KSSV
el 11 de Sept. de 2021
I have 200*200 double matrix and I want to see thee image generated.What code snippet should I use?
0 comentarios
Respuesta aceptada
KSSV
el 11 de Sept. de 2021
Let A be your matrix.
figure
imshow(A)
figure
imagesc(A)
figure
pcolor(A) ;
shading interp;
colorbar
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!