Rotate the colormap image: Axis labels missing after rotation!

5 ビュー (過去 30 日間)
aneps
aneps 2014 年 12 月 14 日
コメント済み: aneps 2014 年 12 月 15 日
I have a colormap image as shown here.
I want to rotate it through 45 degrees. I used imrotate to perform this as follows:
ImageRot=imrotate(Image,45);
imshow(ImageRot,'colormap',jet)
set(gca,'Clim',[0,25])
After doing this, I am getting the image rotated but unfortunately without axis, labels and title... im just getting the image (following image).
How can I insert the axis labels and all or how to perform rotation keeping the axis labels and title?
  2 件のコメント
Image Analyst
Image Analyst 2014 年 12 月 14 日
What is the point of the set() function? What if you just don't call that? At what point does the colorbar vanish?
aneps
aneps 2014 年 12 月 14 日
編集済み: aneps 2014 年 12 月 14 日
set() is just to adjust the intensity scale of the colormap. I can remove it and change the intensity manually. But that doesn't solve the issue of missing axes labels etc...The colorbar and axes labels vanish when I use 'imshow'

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2014 年 12 月 14 日
After the call to imshow(), call colorbar().
  9 件のコメント
aneps
aneps 2014 年 12 月 15 日
I tried, it is not working!.. giving the same thing again :(
aneps
aneps 2014 年 12 月 15 日
Thanks... I made it finally using 'flipud':
imshow(flipud(ImageRot),'XData',[0 40],'YData',[0 40])
set(gca, 'ydir', 'normal');

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDisplay Image についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by