Issue with getframe()
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Walter Roberson
il 26 Gen 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.
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!