When I use CImg to load a BMP, how can I know whether it is a grayscale or color image? I have tried as follows, but failed:

cimg_library::CImg<unsigned char> img("lena_gray.bmp");

const int spectrum = img.spectrum();

img.save("lenaNew.bmp");

To my expectation, no matter what kind of BMP I have loaded, spectrum will always be 3. As a result, when I load a grayscale and save it, the result size will be 3 times bigger as it is.

I just want to save a same image as it is loaded. (How To Save a grayscale?)

link|improve this question
feedback

1 Answer

I guess the BMP format always store images as RGB-coded data, so reading a BMP will always result in a color image. If you know your image is scalar, all channels will be the same, so you can discard two of them (here keeping the first one).

img.channel(0);

If you want to check that it is a scalar image, you can test the equality between channels, as

const CImg<unsigned char> R = img.get_shared_channel(0),
                          G = img.get_shared_channel(1),
                          B = img.get_shared_channel(2);
if (R==G && R==B) {
    .. Your image is scalar !
} else {
    .. Your image is in color.
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.