Return true if img is a RGB image.
A variable can be considered a RGB image if it is a non-sparse, real array of size MxNx3xK, and:
Note: despite their suggestive names, the functions isbw, isgray, isind, and isrgb, are ambiguous since it is not always possible to distinguish between those image types. For example: an uint8 matrix can be both a grayscale and indexed image; a grayscale image may have values outside the range [0 1]. They are good to dismiss input as an invalid image type, but not for identification.
See also: rgb2gray, rgb2ind, isbw, isgray, isind.
Package: image