-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetectorFAST.cpp
58 lines (47 loc) · 1.95 KB
/
detectorFAST.cpp
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
58
//
// Created by ashutosh on 04.09.20.
//
#include <iostream>
#include <numeric>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include "BCR_adjustment.hpp"
using namespace std;
using namespace cv;
int main() {
// load image from file and convert to grayscale
string image_path = "../Data/KITTI/Camera/Data/0000000000.png";
Mat imgGray;
Mat img = imread(image_path);
if (img.empty()) {
cout << "Could not read the image: " << image_path << std::endl;
return 1;
}
double contrast = 2.8; // between 1.0 - 3.0
double brightness = 10; // between 0 - 100
double gamma_c = 0.4;
Mat img_CNB = Brightness_and_Contrast(img, brightness, contrast, gamma_c);
cvtColor(img_CNB, imgGray, cv::COLOR_BGR2GRAY);
int threshold = 35; // difference between intensity of the central pixel and pixels of a circle around this pixel
bool bNMS = true; // perform non-maxima suppression on keypoints
FastFeatureDetector::DetectorType type = cv::FastFeatureDetector::TYPE_9_16; // TYPE_9_16, TYPE_7_12, TYPE_5_8
Ptr<FeatureDetector> detector = FastFeatureDetector::create(threshold, bNMS, type);
vector<KeyPoint> kptsFAST;
double t = (double) getTickCount();
detector->detect(imgGray, kptsFAST);
t = ((double) getTickCount() - t) / getTickFrequency();
cout << "FAST with n= " << kptsFAST.size() << " keypoints in " << 1000 * t / 1.0 << " ms" << endl;
Mat visImage = img.clone();
drawKeypoints(img, kptsFAST, visImage, cv::Scalar::all(-1), cv::DrawMatchesFlags::DRAW_RICH_KEYPOINTS);
string windowName = "FAST Results";
namedWindow(windowName, 2);
imshow(windowName, visImage);
int h = cv::waitKey(0); // Wait for a keystroke in the window
if (h == 's') {
imwrite("../Output/FASTDetector_after_BCG_adjustment.png", visImage);
cout << "Image is saved " << std::endl;
}
return 0;
}