Change how numbers are visualized with imagesc?
4 次查看(过去 30 天)
显示 更早的评论
Hi, with
figure,imagesc
I visualize the scale like "scale"
but I want to visualize with "0.02, 0.015, 0.01 ..." without "x10^3"
What can I do?
0 个评论
回答(1 个)
Image Analyst
2023-6-11
Multiply your image by 1000 before passing in to imagesc. A side effect though is that the pixel values reported by mousing around over the image will also be 1000 times as big (rather than the original values) if you called impixelinfo, but maybe that will be OK. I prefer imshow to imagesc since it doesn't apply some (probably undesired) colormap by default.
scaledImage = originalImage * 1000;
imshow(scaledImage, []);
colormap('turbo');
colorbar;
impixelinfo
2 个评论
Image Analyst
2023-6-11
Make up your own custom labels. See the documentation
help colorbar properties
Set TickLabelsMode and TickLabels properties for the colorbar.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Orange 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!