How I can show one plane of a 3D matrix double

8 visualizaciones (últimos 30 días)
Hassan Zhairabany
Hassan Zhairabany el 28 de Mayo de 2020
Editada: Hassan Zhairabany el 28 de Mayo de 2020
Hello,
I have a matrix
A=randi([0,1],[256,256,5])
and I want to show the plane B in a top view image like imshow()
B=A(255,:,:)
But imshow(B) does not work because the image of B considered Multi-plane, B is 256*1*5 double

Respuesta aceptada

KSSV
KSSV el 28 de Mayo de 2020
To use imshow the input should be a matrix .....you may try
imshow(squeeze(B))
  3 comentarios
KSSV
KSSV el 28 de Mayo de 2020
Thanks is accepting the answer...:)
Hassan Zhairabany
Hassan Zhairabany el 28 de Mayo de 2020
Editada: Hassan Zhairabany el 28 de Mayo de 2020
:) I forgot to accept it at first. now accepted

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by