質問ですがどうすれば「sRGBをRGBに変換出来るののでしょうか」調べましたがPythonやJavaといった他言語は知らないためコードが読めず参考になりません。色空間のリファレンスを見ましたがわかりません。
参考サイト: http://opencv.jp/cookbook/opencv_img.html#id3
警告[
libpng warning: iCCP: known incorrect sRGB profile
libpng warning: iCCP: too many profiles
]
cpp
1//画像ファイルのバイナリを返す。 widht ,height は大きさで必要ない場合は指定しない。 2byte* Game::LoadTexture(const char* str,int *width, int *height) 3{ 4 cv::Mat image; 5 image = cv::imread(str); 6 7 if (image.empty() == true) 8 { 9 printf("image.empty()\n"); 10 return 0; 11 } 12 13 14 int size = image.rows * image.cols; 15 byte* bytes = new byte[size]; 16 std::memcpy(bytes, image.data, size * sizeof(byte)); 17 18 // 画像サイズを取得 19 if (width != nullptr) { 20 *width = image.cols; // 横 21 } 22 23 if (height != nullptr) { 24 *height = image.rows; // 縦 25 } 26 27 return bytes; // unsigned char*を返す 28 29}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。