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?)