我有一个在CvMat
矩阵中转换的图像说CVMat source
。一旦我得到一个感兴趣的区域,source
我希望算法的其余部分只应用于那个感兴趣的区域。为此,我认为我将不得不以某种方式裁剪source
我无法这样做的矩阵。是否有可以裁剪CvMat
矩阵并返回另一个裁剪CvMat
矩阵的方法或函数?谢谢。
问问题
182164 次
6 回答
146
OpenCV 具有您可能会发现有用的感兴趣区域功能。如果您使用的是,cv::Mat
那么您可以使用类似以下的内容。
// You mention that you start with a CVMat* imagesource
CVMat * imagesource;
// Transform it into the C++ cv::Mat format
cv::Mat image(imagesource);
// Setup a rectangle to define your region of interest
cv::Rect myROI(10, 10, 100, 100);
// Crop the full image to that image contained by the rectangle myROI
// Note that this doesn't copy the data
cv::Mat croppedImage = image(myROI);
于 2011-11-25T10:55:39.633 回答
46
我知道这个问题已经解决了。但是有一种非常简单的裁剪方法。你可以在一行中完成 -
Mat cropedImage = fullImage(Rect(X,Y,Width,Height));
于 2014-04-03T04:49:36.337 回答
23
为了针对不同类型的矩阵获得更好的结果和鲁棒性,除了复制数据的第一个答案之外,您还可以执行此操作:
cv::Mat source = getYourSource();
// Setup a rectangle to define your region of interest
cv::Rect myROI(10, 10, 100, 100);
// Crop the full image to that image contained by the rectangle myROI
// Note that this doesn't copy the data
cv::Mat croppedRef(source, myROI);
cv::Mat cropped;
// Copy the data into new matrix
croppedRef.copyTo(cropped);
于 2014-04-03T08:31:07.693 回答
10
要创建我们想要的作物的副本,我们可以执行以下操作,
// Read img
cv::Mat img = cv::imread("imgFileName");
cv::Mat croppedImg;
// This line picks out the rectangle from the image
// and copies to a new Mat
img(cv::Rect(xMin,yMin,xMax-xMin,yMax-yMin)).copyTo(croppedImg);
// Display diff
cv::imshow( "Original Image", img );
cv::imshow( "Cropped Image", croppedImg);
cv::waitKey();
于 2016-02-16T18:27:49.900 回答
1
我知道这个问题已经得到回答,但也许这可能对某人有用......
如果您希望将数据复制到单独的cv::Mat对象中,可以使用类似于以下的函数:
void ExtractROI(Mat& inImage, Mat& outImage, Rect roi){
/* Create the image */
outImage = Mat(roi.height, roi.width, inImage.type(), Scalar(0));
/* Populate the image */
for (int i = roi.y; i < (roi.y+roi.height); i++){
uchar* inP = inImage.ptr<uchar>(i);
uchar* outP = outImage.ptr<uchar>(i-roi.y);
for (int j = roi.x; j < (roi.x+roi.width); j++){
outP[j-roi.x] = inP[j];
}
}
}
需要注意的是,这只能在单通道图像上正常工作。
于 2014-01-28T14:58:56.433 回答
-2
您可以使用 opencv 函数轻松裁剪 Mat。
setMouseCallback("Original",mouse_call);
下面mouse_call
给出:
void mouse_call(int event,int x,int y,int,void*)
{
if(event==EVENT_LBUTTONDOWN)
{
leftDown=true;
cor1.x=x;
cor1.y=y;
cout <<"Corner 1: "<<cor1<<endl;
}
if(event==EVENT_LBUTTONUP)
{
if(abs(x-cor1.x)>20&&abs(y-cor1.y)>20) //checking whether the region is too small
{
leftup=true;
cor2.x=x;
cor2.y=y;
cout<<"Corner 2: "<<cor2<<endl;
}
else
{
cout<<"Select a region more than 20 pixels"<<endl;
}
}
if(leftDown==true&&leftup==false) //when the left button is down
{
Point pt;
pt.x=x;
pt.y=y;
Mat temp_img=img.clone();
rectangle(temp_img,cor1,pt,Scalar(0,0,255)); //drawing a rectangle continuously
imshow("Original",temp_img);
}
if(leftDown==true&&leftup==true) //when the selection is done
{
box.width=abs(cor1.x-cor2.x);
box.height=abs(cor1.y-cor2.y);
box.x=min(cor1.x,cor2.x);
box.y=min(cor1.y,cor2.y);
Mat crop(img,box); //Selecting a ROI(region of interest) from the original pic
namedWindow("Cropped Image");
imshow("Cropped Image",crop); //showing the cropped image
leftDown=false;
leftup=false;
}
}
有关详细信息,您可以访问使用鼠标裁剪图像的链接
于 2016-06-25T07:57:41.350 回答