完全なリストからの関連コードは次のとおりです。
#include "CImg.h"
using namespace cimg_library;
int main() {
CImg<unsigned char> src("Tulips.jpg");
int width = src.width();
int height = src.height();
int depth = src.depth();
//New grayscale images.
CImg<unsigned char> gray1(width,height,depth,1);
CImg<unsigned char> gray2(width,height,depth,1);
// ...
(src,gray1,gray2).display("RGB to Grayscale");
}
ラインはどのように機能し(src,gray1,gray2).display("RGB to Grayscale");
ますか?display
メンバー関数は、コンマ区切りリスト内の各オブジェクトにどのように適用されますか?