私はopencvの初心者です。私はこのタスクを持っています:
新しい画像を作成する
特定の画像を0,0に入れます
特定の画像をグレースケールに変換する
その隣にグレースケール画像を置きます(300、0で)
これが私がしたことです。コンストラクターとすべての関数を持つクラス imagehandler があります。
cv::Mat m_image
メンバーフィールドです。
新しい画像を作成するコンストラクタ:
imagehandler::imagehandler(int width, int height)
: m_image(width, height, CV_8UC3){
}
ファイルから画像を読み取るコンストラクタ:
imagehandler::imagehandler(const std::string& fileName)
: m_image(imread(fileName, CV_LOAD_IMAGE_COLOR))
{
if(!m_image.data)
{
cout << "Failed loading " << fileName << endl;
}
}
これはグレースケールに変換する関数です:
void imagehandler::rgb_to_greyscale(){
cv::cvtColor(m_image, m_image, CV_RGB2GRAY);
}
これは、貼り付けイメージをコピーする関数です。
//paste image to dst image at xloc,yloc
void imagehandler::copy_paste_image(imagehandler& dst, int xLoc, int yLoc){
cv::Rect roi(xLoc, yLoc, m_image.size().width, m_image.size().height);
cv::Mat imageROI (dst.m_image, roi);
m_image.copyTo(imageROI);
}
さて、主に、これは私がやったことです:
imagehandler CSImg(600, 320); //declare the new image
imagehandler myimg(filepath);
myimg.copy_paste_image(CSImg, 0, 0);
CSImg.displayImage(); //this one showed the full colour image correctly
myimg.rgb_to_greyscale();
myimg.displayImage(); //this shows the colour image in GRAY scale, works correctly
myimg.copy_paste_image(CSImg, 300, 0);
CSImg.displayImage(); // this one shows only the full colour image at 0,0 and does NOT show the greyscaled one at ALL!
問題に見えるのは?私はこれについて何時間も頭を悩ませてきました!!!