【发布时间】:2013-07-10 12:16:04
【问题描述】:
我正在尝试从视频中检测车辆,我将在实时应用程序中执行此操作,但目前为了更好地理解我正在视频中执行此操作,代码如下:
void surf_detection(Mat img_1,Mat img_2); /** @function main */
int main( int argc, char** argv )
{
int i;
int key;
CvCapture* capture = cvCaptureFromAVI("try2.avi");// Read the video file
if (!capture){
std::cout <<" Error in capture video file";
return -1;
}
Mat img_template = imread("images.jpg"); // read template image
int numFrames = (int) cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_COUNT);
IplImage* img = 0;
for(i=0;i<numFrames;i++){
cvGrabFrame(capture); // capture a frame
img=cvRetrieveFrame(capture); // retrieve the captured frame
surf_detection (img_template,img);
cvShowImage("mainWin", img);
key=cvWaitKey(20);
}
return 0;
}
void surf_detection(Mat img_1,Mat img_2)
{
if( !img_1.data || !img_2.data )
{
std::cout<< " --(!) Error reading images " << std::endl;
}
//-- Step 1: Detect the keypoints using SURF Detector
int minHessian = 400;
SurfFeatureDetector detector( minHessian );
std::vector<KeyPoint> keypoints_1, keypoints_2;
std::vector< DMatch > good_matches;
do{
detector.detect( img_1, keypoints_1 );
detector.detect( img_2, keypoints_2 );
//-- Draw keypoints
Mat img_keypoints_1; Mat img_keypoints_2;
drawKeypoints( img_1, keypoints_1, img_keypoints_1, Scalar::all(-1), DrawMatchesFlags::DEFAULT );
drawKeypoints( img_2, keypoints_2, img_keypoints_2, Scalar::all(-1), DrawMatchesFlags::DEFAULT );
//-- Step 2: Calculate descriptors (feature vectors)
SurfDescriptorExtractor extractor;
Mat descriptors_1, descriptors_2;
extractor.compute( img_1, keypoints_1, descriptors_1 );
extractor.compute( img_2, keypoints_2, descriptors_2 );
//-- Step 3: Matching descriptor vectors using FLANN matcher
FlannBasedMatcher matcher;
std::vector< DMatch > matches;
matcher.match( descriptors_1, descriptors_2, matches );
double max_dist = 0;
double min_dist = 100;
//-- Quick calculation of max and min distances between keypoints
for( int i = 0; i < descriptors_1.rows; i++ )
{
double dist = matches[i].distance;
if( dist < min_dist )
min_dist = dist;
if( dist > max_dist )
max_dist = dist;
}
//-- Draw only "good" matches (i.e. whose distance is less than 2*min_dist )
for( int i = 0; i < descriptors_1.rows; i++ )
{
if( matches[i].distance < 2*min_dist )
{
good_matches.push_back( matches[i]);
}
}
}while(good_matches.size()<100);
//-- Draw only "good" matches
Mat img_matches;
drawMatches( img_1, keypoints_1, img_2, keypoints_2,good_matches, img_matches, Scalar::all(-1), Scalar::all(-1),
vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS );
//-- Localize the object
std::vector<Point2f> obj;
std::vector<Point2f> scene;
for( int i = 0; i < good_matches.size(); i++ )
{
//-- Get the keypoints from the good matches
obj.push_back( keypoints_1[ good_matches[i].queryIdx ].pt );
scene.push_back( keypoints_2[ good_matches[i].trainIdx ].pt );
}
Mat H = findHomography( obj, scene, CV_RANSAC );
//-- Get the corners from the image_1 ( the object to be "detected" )
std::vector<Point2f> obj_corners(4);
obj_corners[0] = Point2f(0,0);
obj_corners[1] = Point2f( img_1.cols, 0 );
obj_corners[2] = Point2f( img_1.cols, img_1.rows );
obj_corners[3] = Point2f( 0, img_1.rows );
std::vector<Point2f> scene_corners(4);
perspectiveTransform( obj_corners, scene_corners, H);
//-- Draw lines between the corners (the mapped object in the scene - image_2 )
line( img_matches, scene_corners[0] , scene_corners[1] , Scalar(0, 255, 0), 4 );
line( img_matches, scene_corners[1], scene_corners[2], Scalar( 0, 255, 0), 4 );
line( img_matches, scene_corners[2] , scene_corners[3], Scalar( 0, 255, 0), 4 );
line( img_matches, scene_corners[3] , scene_corners[0], Scalar( 0, 255, 0), 4 );
imshow( "Good Matches & Object detection", img_matches );
}
我得到以下输出
和 std::cout
H 值:
但我的问题是为什么它不在检测到的对象上绘制矩形:
我在简单的视频和图像上这样做,但是当我在静止相机上这样做时,如果没有那个矩形可能会很困难
【问题讨论】:
-
在下面的答案中提到这个问题是stackoverflow.com/questions/11049081/…的副本
-
@masad 我认为这个答案对我不起作用,你可以看看
-
检查单应矩阵 H 并在此处发布结果。使用新的 opencv 接口,它可以作为 cout
-
@mrgloom 我更新了 Mat H 的结果
-
您不能对图片i.stack.imgur.com/RfrYH.png 上的“不同”对象应用 sift 特征,但您可以尝试基于 SIFT 特征的星座模型(将涉及机器学习)
标签: opencv image-processing computer-vision