how show color image ?
Ältere Kommentare anzeigen
I use figure, imshow(colorimage); it do not show and give White window
what is this problem
Antworten (2)
Walter Roberson
am 8 Jul. 2012
Bearbeitet: Walter Roberson
am 8 Jul. 2012
Try
imshow(colorimage, [])
And tell us what you get for
class(colorimage)
size(colorimage)
min(colorimage(:))
max(colorimage(:))
4 Kommentare
Aseel H
am 8 Jul. 2012
Walter Roberson
am 8 Jul. 2012
tell us what you get for
class(colorimage)
size(colorimage)
min(colorimage(:))
max(colorimage(:))
Aseel H
am 8 Jul. 2012
Walter Roberson
am 8 Jul. 2012
You gave those four commands, and the response was just the literal words
size(colorimage)
??
Image Analyst
am 8 Jul. 2012
I suggest you do what Walter asked. If you refuse (which would be strange - why deny us the ability to help you?), then try this and see what happens
imshow(uint8(colorimage));
and if that doesn't work try this:
imshow(uint8(255 * colorimage));
2 Kommentare
Walter Roberson
am 8 Jul. 2012
I would normally expect the [] range specifier of imshow() to work usefully in the two cases the above would help with.
Image Analyst
am 8 Jul. 2012
Yeah, so would I, though it doesn't. It does scale min to 0 and max to 255 with gray scale double images, but not with color double images. I'm not sure why it doesn't work with color the same way as grayscale. I'm sure they could if they wanted to program it up that way. I'll put it on my wish list and talk to them about it.
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!