imagesc() Y Axis Log Scale Not Working (Help!)

I have a matrix (image_spectrogram) which representing a image.
Using the imagesc function, I can shown the image.
eg: imagesc(x,y,log10(image_spectrogram+1));
I am trying to set the y axis to log scale, so I typed:
set(gca,'YScale','log','YDir','normal','YTick',[0.1,100,500,1000,5000]);
However, it turns out that this is a fake log scale.
The YScale did turn into log scale, but the image is absolutely identical to the linear one.
Two images are attached as following.
How to get a real log scale (y axis) image, please help me! This is the linear image:
This is the Y axis log scale image:
They are same except the fake log scale Y axis.
My original code is :
imagesc(x,y,log10(image_spectrogram(1:floor(Fs/2),:)+1));
cmap = colormap('gray');
colormap(flipud(cmap));
caxis(log10([0.9,max(image_spectrogram(:))*0.2]));
set(gca,'YScale','log','YDir','normal','YTick',[0.1,100,500,1000,5000]);
Help!

 Accepted Answer

Mike Garrity
Mike Garrity on 17 Sep 2015
Edited: Mike Garrity on 17 Sep 2015
The way images work is that they only have coordinates for the corners. These get transformed and then the graphics hardware fills in the interior of the image using the texturemapping hardware. The texture lookup is linear (actually the ratio of two linear interpolations, but that doesn't matter here), so making one of the scales log has no effect on the interior of the image.
To get the interior of the image to transform non-linearly, you need coordinates for the interior vertices, rather than just colors. The pcolor command is the simplest way to do this:
h = pcolor(x,y,log10(image_spectrogram(1:floor(Fs/2),:)+1));
h.EdgeColor = 'none';
What pcolor is doing is actually creating a surface object and setting the view so that you're looking down from the top. It is important to note that the surface object is going to consume more memory than the image object would. That's because it actually has coordinates for all of the interior vertices.

4 Comments

Looks like imagesc should be pcolor in the code you posted, Mike.
Thanks, I went back and fixed it. Looks like the coffee hadn't really hit yet.
Thank you very much. That works good!
Thank you so much! I've been poking around with imagsc() for ages not realising the axes log wasn't working. My code now works perfectly.

Sign in to comment.

More Answers (3)

If you want to avoid pcolor, you can resample the image at the log scale locations, then use imagesc to display that.

1 Comment

can you tell me how we can do that i.e resample existing image cdata at log scale location?

Sign in to comment.

I cannot get to implement correctly neither of the two solutions given here. I just wanted to make a quick image from a "rows x columns" matrix, where the Y axis must be plotted in log scale. I thought it would be simple, but it seems matlab has so much complexity that my approach is not working.
image(My2DMatrix,'CDataMapping','scaled')
works fine. I can change the color scale, axes ranges, and everything through the menus from the created image. However, transforming the image so it displays a log Y axis does nothing to the image. Maybe I need another type of plot? I'm a complete newbe in matlab. Have worked with other languages but it seems matlab is not so easy as other programming environments.
Ok, I solved my problem using contourf, which handles better my type of data

Categories

Find more on Graphics Performance in Help Center and File Exchange

Asked:

Yi
on 17 Sep 2015

Commented:

on 6 Dec 2018

Community Treasure Hunt

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

Start Hunting!