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?
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 Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

질문:

2015년 12월 15일

댓글:

2015년 12월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by