You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rect roi = new Rect();
//设置ROI
Mat imgROI = new Mat(frame, roi);
//目标Mat
Mat imgDesc = new Mat(5, 5, CvType.CV_8UC3);
//从ROI中剪切图片
imgROI.copyTo(imgDesc);