Issue with getframe()
1 回表示 (過去 30 日間)
古いコメントを表示
I am saving the images generated inside the for loop using getframe () command. I have the following two issues.
- I couldn't change the colormap
- As shown in the image, double tick marks are appearing on the axis values
Any idea how to get rid of this?
0 件のコメント
回答 (1 件)
Walter Roberson
2024 年 1 月 26 日
The image is RGB; you cannot change the colormap on RGB images.
The image has tick marks drawn into it. When you image() or imagesc() it, the axes gets drawn including tick marks for the axes, which do not happen to line up with the tick marks that are part of the image. If you imshow(x3) then the axes will not be drawn.
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!