oriented_gradient.hpp
Go to the documentation of this file.
1 // @file oriented_gradient.hpp
2 // @brief calc oriented gradient
3 // @author Hiroaki Yaguchi, JSK
4 
5 #ifndef JSK_PERCEPTION_ORIENTEDGRADIENT_HPP_
6 #define JSK_PERCEPTION_ORIENTEDGRADIENT_HPP_
7 
8 #include <stdlib.h>
9 #include <stdio.h>
10 #include <unistd.h>
11 #include <pthread.h>
12 #include <iostream>
13 #include <fstream>
14 #include <string>
15 #include <vector>
16 
17 #include <opencv2/highgui/highgui.hpp>
18 #include <opencv2/core/core.hpp>
19 #include <opencv2/imgproc/imgproc.hpp>
20 
21 namespace jsk_perception {
22 
23 void calcOrientedGradient(cv::Mat& src, cv::Mat& dst);
24 void calcOGKeyPoints(cv::Mat& src,
25  cv::Mat& dst,
26  std::vector<cv::Point>& result,
27  int thres = 32,
28  int bs = 1);
29 void calcScaledOrientedGradient(cv::Mat& src, cv::Mat& dst, int scale);
30 void calcSOGKeyPoints(cv::Mat& src, cv::Mat& dst);
31 
32 }
33 
34 #endif // JSK_PERCEPTION_ORIENTEDGRADIENT_HPP_
35 
void calcOrientedGradient(cv::Mat &src, cv::Mat &dst)
void calcScaledOrientedGradient(cv::Mat &src, cv::Mat &dst, int scale)
void calcOGKeyPoints(cv::Mat &src, cv::Mat &dst, std::vector< cv::Point > &result, int thres=32, int bs=1)
void calcSOGKeyPoints(cv::Mat &src, cv::Mat &dst)


jsk_perception
Author(s): Manabu Saito, Ryohei Ueda
autogenerated on Mon May 3 2021 03:03:27