OpenCV CPP Buat gambar warna tunggal

int cols = 1920;
int rows = 1080;
cv::Mat blueImage(cols, rows, CV_8UC3, cv::Scalar(0, 0, 255));
Jazz #