plot of gray level
조회 수: 1 (최근 30일)
이전 댓글 표시
how to plot gray level plot of image. gray factor on axis and on y axis the tolarance
댓글 수: 0
답변 (1개)
Image Analyst
2012년 4월 21일
Read the help on image, imshow, imagesc, colormap, and colorbar functions.
I have no idea what you mean by tolerance and "gray factor," or "gray level plot of an image" for that matter. Do you want to plot a curve of image intensity (gray level) versus distance along some line (e.g. a particular row or column)? If so that would be like
plot(imageArray(rowToPlot, :));
or
plot(imageArray(:, columnToPlot));
Also, please check this out: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Modify Image Colors에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!