- take the absolute value with "abs"
- shift all values so that you don't have negatives anymore
- scale the values so that you have 0 in the middle of the RGB values
- ...
how to display a matrix with negative values as a image
조회 수: 27 (최근 30일)
이전 댓글 표시
some arithmatic operations gives negative values.is it a problem for displaying the image.how to display a matrix with negative values as a image
댓글 수: 0
답변 (3개)
Simon
2013년 9월 30일
There are many ways of doing this
(may grayscale image is most suitable for this?)
Jan
2013년 9월 30일
편집: Jan
2013년 9월 30일
It depends on what you want to display. Some examples:
data = 1 + 2 .* randn(200, 200); % Test data
1. Set all negative value to zero, scale the positive values to be in the range of [0,1]:
img1 = max(data, 0);
img1 = img1 / max(img1(:));
2. Shift all values to the positive range, that scale again as above:
img2 = data - min(data(:));
img2 = img2 / max(img2(:));
3. There is an infinite number of possibilities for pseudo-color images. You could e.g. define colors for different intervals by dividing the total range max(data(:)) - min(data(:)) into 17 different intervals and using the 2nd output of histc to get the interval for each pixel.
4. Perhaps you are talking about RGB images? Then even more possible mappings exist.
Conclusion: Please post any details about the wanted procedure. We cannot guess them.
댓글 수: 0
Image Analyst
2013년 9월 30일
I gave you some answers in your duplicate question: http://www.mathworks.com/matlabcentral/answers/88637#comment_171537 Why do you have two questions on the same question? Doesn't that make it confusing for you , and us, when you have two places to go to look for answers?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!