我正在学习 OpenCV,我已经到了无论我做什么都会卡住的地步。我要做的是将对象(矩形对象)与其背景隔离开来。
我想掩盖该图像,以便唯一剩下的就是对象。
我尝试了以下方法:
- 阈值化
- 使用 Canny 检测边缘
- 查找轮廓
- 得到更大的
但是我得到了一些奇怪的区域作为更大的区域。以下是结果图片:
这是我正在使用的代码:
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdlib.h>
#include <stdio.h>
using namespace cv;
using namespace std;
int main( int, char** argv )
{
Mat src, srcGray,srcBlur,srcCanny;
string file = "samsung";
src = imread(file + ".jpg");
cvtColor(src, srcGray, CV_BGR2GRAY);
//bilateralFilter(srcGray, srcBlur,11, 17, 17);
srcBlur = srcGray.clone();
imshow("Filtered", srcBlur);
imwrite(file+"-filtered.jpg",srcBlur);
Canny(srcBlur, srcCanny, 0, 100, 3, true);
imshow("Canny", srcCanny);
imwrite(file+"-canny.jpg",srcCanny);
vector< vector <Point> > contours; // Vector for storing contour
vector< Vec4i > hierarchy;
findContours( srcCanny.clone(), contours, hierarchy,CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE ); // Find the contours in the image
int largest_contour_index=0;
int largest_area=0;
for( int i = 0; i< contours.size(); i++ ){
double a=contourArea( contours[i],false); // Find the area of contour
if(a>largest_area){
largest_area=a;
largest_contour_index=i; //Store the index of largest contour
}
}
Mat dst(src.rows,src.cols,CV_8UC1,Scalar::all(0)); //create destination image
drawContours( dst,contours, largest_contour_index, Scalar(255,0,0),CV_FILLED, 8, hierarchy );
imshow("Largest", dst);
imwrite(file+"-largest.jpg",dst);
waitKey();
}
这段代码旨在获取对象的“掩码”,然后应该应用掩码,但我无法继续前进,因为我无法检测到对象
我的目标是检测不同图像中的矩形对象(每张图像只有一个对象)。
这个想法是从这里得到的,但我无法让该代码与像我这样的对比度较低的图像一起使用。
我也试过这个和我想要的差不多。
我想隔离一个矩形对象(应该是图像中较大的对象)
提前致谢!
PS:虽然我可以将 Python 翻译成 C++,但我希望能直接在 C++ 中得到答案,这样我可以更快地对其进行测试。