Clear Filters
Clear Filters

.mha file displayed by matlab is different from by ITK-SNAP

3 views (last 30 days)
I have a .mha file saved from ITK-SNAP, as following upper one. But when I use Matlab to read and show this image, it shows like following under. I'm trying to find the reason, but I failed. So hope somebody will give me a help. Thanks a lot!
1557544594(1).png
1557544736(1).png

Accepted Answer

Walter Roberson
Walter Roberson on 11 May 2019
Notice from the labels on the image that 'R' is on the left side, and 'L' is on the right side: the image is either rotated or flipped.
By examining the outline, we can see that you should
imshow( fliplr(flipud(YourImage)) )
  1 Comment
Yaoting Yue
Yaoting Yue on 11 May 2019
Thank you a lot! I've runned "imshow( fliplr(flipud(YourImage)) )", it still wrong. After I using imshow(imrotate(fliplr(the image shown in matlab), 90), it seems the same as that ITK-snap shows, but I'm not sure whether its right. I still wonder why the mha file changed in matlab, cause DCM file won't do this.

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!