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

 Réponse acceptée

Chad Greene
Chad Greene le 15 Déc 2015

0 votes

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 commentaires

laksantini anas
laksantini anas le 16 Déc 2015
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)
laksantini anas
laksantini anas le 17 Déc 2015
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.
Chad Greene
Chad Greene le 17 Déc 2015
Glad to help, but that's about as much as I know. You've reached the end of my knowledge!
laksantini anas
laksantini anas le 20 Déc 2015
thanks a lot you have already help me.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by