提示コードの////////コメント部のコードですがprintf();デバッグしているとどうやらここが原因みたいなのですがこの例外エラーはどうすればいいのでしょうか? 戻り値の型などは正しいのですがどうすればいいのかわかりません。また代入先の型は正しいです。
cpp
1#include "../Header/Texture.hpp" 2#include "../Header/Game.hpp" 3 4std::shared_ptr<byte> LoadTexture(const char* str, int& width, int& height,int& channels ) 5{ 6 cv::Mat image; 7 image = cv::imread(str, cv::IMREAD_UNCHANGED); 8 9 //printf("image.channels: %d\n", image.channels()); // 3 10 11 if (image.empty() == true) 12 { 13 printf("image.empty()\n"); 14 return nullptr; 15 } 16 else { 17// printf("load \n"); 18 19 cv::cvtColor(image, image, cv::COLOR_BGRA2RGBA); 20 21// printf("channels: %d\n",image.channels()); //4 22 int size = image.rows * image.cols * image.channels(); 23 24 25 26// printf("size: %d\n", size); 27 28// byte* bytes = new byte[size]{ 0 }; // new 29 // byte* bytes = new byte[size]{ 0 }; // new 30 std::shared_ptr<byte> bytes = std::make_shared<byte>(size); 31 32 33 std::memcpy((void*)bytes.get(), image.data, (size_t)size); 34 35 36 // 画像サイズを取得 37 width = image.cols; // 横 38 height = image.rows; // 縦 39 40 channels = image.channels(); //チャンネル数を取得 41 42 printf("ええええ\n"); 43 44 //return bytes; // unsigned char*を返す 45 return bytes; // unsigned char*を返す//////////////////////////////////////////////////////// 46 } 47} 48
すみません。レビューになりますが、この場合else構文は要らないと思います。
回答1件
あなたの回答
tips
プレビュー