MATLAB: Setting Display Range for RGB Colors

imshowrgb

Hi,
The function imshow(I,[low high]) allows you to set the display range for a grayscale color based on the parameters low and high. Can the same be done for an RGB color without manually editing the array?
Thanks!

Best Answer

No, it can't. It happens automatically. Even for 16 (48) bit color images, it automatically scales them to 8(24) bit for display on your 8(24 or 32) bit computer monitor. If you didn't want that or like how that looks you'll have to actually change your array before you display it.
Related Question