Issue with getframe()
1 view (last 30 days)
Show older comments
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 Comments
Answers (1)
Walter Roberson
on 26 Jan 2024
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.
See Also
Categories
Find more on Convert Image Type 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!