OpenCv ROI操作

时间:2021-09-28 00:36:28
    Mat img, dst;
Rect imgroi(, , img.cols, img.rows);//小图像img需要复制到大图的像素区域rect
Rect dstroi(, , img.cols, img.rows);//大图像dst中接收的区域rect
Mat dstregion = dst(dstroi);//获取大图像dst接收区域的像素应用
img(imgroi).convertTo(dstregion, dstregion.type(), , );//将图像img的该区域复制到大图像接收区域