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!