imshow doesn't work on 4D images?
3 次查看(过去 30 天)
显示 更早的评论
I get an error "Multi-plane image inputs must be RGB images of size MxNx3." while I am trying to imshow(im2) where im2 is a 4D matrix. How do I write it correctly?
0 个评论
采纳的回答
Walter Roberson
2018-5-27
You do not. imshow() cannot possibly work with 4D images. There is no display routine for 4D images.
You might be able to take advantage of one of the routines from the File Exchange.
2 个评论
Walter Roberson
2018-5-27
Sometimes DICOM images come out as MxNx1xP . If you squeeze() that down to MxNxP then you can use volumeViewer() on the 3D result.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!