前提・実現したいこと
2枚の画像を比較し,画像のサイズが異なれば1枚目のサイズを2枚目のサイズに合わせるというプログラムを作成しています.
現在サイズの異なる画像を読み込ませているので実行できればサイズが変更されるはずなのですが,
おそらくresize関数でエラーが発生していると思いますが,うまく実行できません.
正しく動作するにはどうしたらよいでしょうか?
発生している問題・エラーメッセージ
画像サイズが異なる OpenCV(4.4.0) Error: Insufficient memory (Failed to allocate 1037718864000 bytes) in cv::OutOfMemoryError, file C:\build\master_winpack-build-win64-vc14\opencv\modules\core\src\alloc.cpp, line 73
該当のソースコード
c++
1#include <opencv2\opencv.hpp> 2 3#include<string> 4 5using namespace cv; 6using namespace std; 7 8 9int main(void) { 10 11 /* 画像パス,名前指定 */ 12 string bstr = "C:\Users\Inspiron3670-161\Desktop\sample\input_40.jpg"; 13 string astr = "C:\Users\Inspiron3670-161\Desktop\sample\input_40.png"; 14 15 /* 画像読み込み */ 16 Mat img1 = imread(bstr, 1); 17 Mat img2 = imread(astr, 1); 18 19 /* 画像サイズ取得 */ 20 int img1_col = img1.cols; 21 int img1_row = img1.rows; 22 int img2_col = img2.cols; 23 int img2_row = img2.rows; 24 25 /* 画像サイズが異なればbimgをaimgに合わせる */ 26 if (img1_col != img2_col || img1_row != img2_row) { 27 cout << "画像サイズが異なる\n"; 28 resize(img1, img1, Size(), img2_col, img2_row); 29 } 30 31 return 0; 32}
試したこと
補足情報(FW/ツールのバージョンなど)
OpenCVバージョン:4.4.0
環境:Visual Studio
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/01 04:59