我是opencv的初学者。我有这个任务:
制作新图像
在 0,0 处放入某个图像
将特定图像转换为灰度
将灰度图像放在它旁边(在 300, 0 处)
这就是我所做的。我有一个具有构造函数和所有函数的类图像处理程序。
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!
似乎是什么问题?我一直在为这个挠头好几个小时!!!