Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是创建一个填充 0-255 灰度颜色的无符号字符缓冲区。缓冲区中的每个单元格为 0-255(无 RGB)。我想从灰度图片中提取一个参数(0-255灰度)。CImg 如何做到这一点?
谢谢,何塞。
您可以在 CImg 中计算输入 sRGB 图像的亮度,如下所示:
CImg<unsigned char> luminance = RGB.get_RGBtoYCbCr().channel(0);
RGBRGB 图像的名称在哪里。
RGB