我想在带有相机图像的垫子上复制图像,但我还没有实现。我知道这可以使用copyTo()来实现。有人能帮帮我吗?这是我尝试的最后一件事:
cv::Mat image=cv::imread("./Sombrero.png",-1);
cv::Rect rect(20,20,image.cols,image.rows);
cv::Mat subdst=mat(rect);
image.copyTo(subdst);
我试图在Qt Creator中为Android做这件事。