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

 採用された回答

Chad Greene
Chad Greene 2015 年 12 月 15 日

0 投票

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 件のコメント

laksantini anas
laksantini anas 2015 年 12 月 16 日
thanks Chad Greene, but can u clarify please what are these parameters?
Chad Greene
Chad Greene 2015 年 12 月 16 日
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 2015 年 12 月 17 日
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 2015 年 12 月 17 日
Glad to help, but that's about as much as I know. You've reached the end of my knowledge!
laksantini anas
laksantini anas 2015 年 12 月 20 日
thanks a lot you have already help me.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by