Creating .PNG image from temperature values

3 次查看(过去 30 天)
The size of my table (i.e. variables) is 462x622 double
I used the code below to create an image:
imagesc(image); colormap jet; axis off
However, the pixel size of the resulting image is 420x560.
How can I make an image with the same pixel size as the variables?

采纳的回答

Ameer Hamza
Ameer Hamza 2020-10-14
编辑:Ameer Hamza 2020-10-14
I guess you are using saveas() or some other function to save the .png file. They are not suitable for maintaining the resolution. Use imwrite() as shows in the following lines
image = round(rescale(image, 1, 256));
imwrite(image, jet, 'image.png');
  6 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Red 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by