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

8 vues (au cours des 30 derniers jours)
Hassan Zhairabany
Hassan Zhairabany le 28 Mai 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

Réponse acceptée

KSSV
KSSV le 28 Mai 2020
To use imshow the input should be a matrix .....you may try
imshow(squeeze(B))
  3 commentaires
KSSV
KSSV le 28 Mai 2020
Thanks is accepting the answer...:)
Hassan Zhairabany
Hassan Zhairabany le 28 Mai 2020
Modifié(e) : Hassan Zhairabany le 28 Mai 2020
:) I forgot to accept it at first. now accepted

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by