- 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
25 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (3)
Simon
am 30 Sep. 2013
There are many ways of doing this
(may grayscale image is most suitable for this?)
Jan
am 30 Sep. 2013
Bearbeitet: Jan
am 30 Sep. 2013
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 Kommentare
Image Analyst
am 30 Sep. 2013
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 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!