-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeature_training.cpp
More file actions
57 lines (54 loc) · 1.92 KB
/
feature_training.cpp
File metadata and controls
57 lines (54 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "DBoW3/DBoW3.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <opencv2/xfeatures2d/nonfree.hpp>
#include <iostream>
#include <vector>
#include <string>
#include "tic_toc.h"
using namespace cv;
using namespace std;
using namespace cv::xfeatures2d;
/***************************************************
* 本节演示了如何根据data/目录下的十张图训练字典
* ************************************************/
int main( int argc, char** argv )
{
TicToc tr;
// read the image
cout<<"reading images... "<<endl;
vector<Mat> images;
for ( int i=0; i<441; i++ )
{
string path = "/aaron/slambook/slambook-master/picmatch/alldata/"+to_string(i)+".jpg";
// string path ="/home/aaron/slambook/slambook-master/iphone8/splitvideo/build/clear/train/"+to_string(i)+".jpg";
images.push_back( imread(path) );
cout<<"now read img "<<path<<endl;
}
// detect ORB features
cout<<"read time spend "<<tr.toc()<<"ms"<<endl;
cout<<"detecting ORB features ... "<<endl;
// int minHessian = 8000;
// Ptr<SurfFeatureDetector> detector = SurfFeatureDetector::create(minHessian);
Ptr < Feature2D > detector = ORB::create();
vector<Mat> descriptors;
for ( Mat& image:images )
{
vector<KeyPoint> keypoints;
Mat descriptor;
detector->detectAndCompute( image, Mat(), keypoints, descriptor );
descriptors.push_back( descriptor );
}
cout<<"detect orb features spend "<<tr.toc()<<"ms"<<endl;
// create vocabulary
cout<<"creating vocabulary ... "<<endl;
DBoW3::Vocabulary vocab;
vocab.create( descriptors );
cout<<"vocabulary info: "<<vocab<<endl;
// vocab.save( "./vocabularyRetail.yml.gz" );
vocab.save( "./vocabulary1.yml.gz" );
cout<<"detect orb features spend "<<tr.toc()<<"ms"<<endl;
cout<<"done"<<endl;
return 0;
}