image and imagesc functions

hello evryone , i m starting using matlab and can't understand the diffrence between image and imagesc functions.

 Accepted Answer

The sc suffix simply means color-scaled. Type this into your command line and see:
open imagesc
The imagesc function calls image and specifies 'CDataMapping','scaled'.

5 Comments

thanks Chad Greene, but can u clarify please what are these parameters?
By default the image function assumes the gridded data you put into it is an image with values associated with how data are stored in image formats. But most real-life data measurements do not perfectly lie in the image data range 0 to 255, so imagesc scales the colormap to match the data. For example, try plotting the sample peaks data with image versus imagesc:
Z = peaks(500);
subplot(121)
image(Z)
subplot(122)
imagesc(Z)
thank you so much Mr Chad Greene for your answers and the time you are giving to me. if it's possible can you tell me how the scale is working on the image.
Glad to help, but that's about as much as I know. You've reached the end of my knowledge!
thanks a lot you have already help me.

Sign in to comment.

More Answers (0)

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!