Commit 61f79c26 authored by Ievgen Khvedchenia's avatar Ievgen Khvedchenia

Fix line ending at EOF

parent 3cfc22ae
...@@ -572,8 +572,8 @@ public: ...@@ -572,8 +572,8 @@ public:
void Get_SURF_Descriptor_Upright_64(const cv::KeyPoint& kpt, float* desc) const; void Get_SURF_Descriptor_Upright_64(const cv::KeyPoint& kpt, float* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
}; };
...@@ -601,8 +601,8 @@ public: ...@@ -601,8 +601,8 @@ public:
void Get_SURF_Descriptor_64(const cv::KeyPoint& kpt, float* desc) const; void Get_SURF_Descriptor_64(const cv::KeyPoint& kpt, float* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
}; };
...@@ -612,7 +612,7 @@ class MSURF_Upright_Descriptor_64_Invoker : public cv::ParallelLoopBody ...@@ -612,7 +612,7 @@ class MSURF_Upright_Descriptor_64_Invoker : public cv::ParallelLoopBody
public: public:
MSURF_Upright_Descriptor_64_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options) MSURF_Upright_Descriptor_64_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options)
: keypoints_(kpts) : keypoints_(kpts)
, descriptors_(desc) , descriptors_(desc)
, evolution_(evolution) , evolution_(evolution)
, options_(options) , options_(options)
{ {
...@@ -629,8 +629,8 @@ public: ...@@ -629,8 +629,8 @@ public:
void Get_MSURF_Upright_Descriptor_64(const cv::KeyPoint& kpt, float* desc) const; void Get_MSURF_Upright_Descriptor_64(const cv::KeyPoint& kpt, float* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
}; };
...@@ -640,7 +640,7 @@ class MSURF_Descriptor_64_Invoker : public cv::ParallelLoopBody ...@@ -640,7 +640,7 @@ class MSURF_Descriptor_64_Invoker : public cv::ParallelLoopBody
public: public:
MSURF_Descriptor_64_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options) MSURF_Descriptor_64_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options)
: keypoints_(kpts) : keypoints_(kpts)
, descriptors_(desc) , descriptors_(desc)
, evolution_(evolution) , evolution_(evolution)
, options_(options) , options_(options)
{ {
...@@ -658,8 +658,8 @@ public: ...@@ -658,8 +658,8 @@ public:
void Get_MSURF_Descriptor_64(const cv::KeyPoint& kpt, float* desc) const; void Get_MSURF_Descriptor_64(const cv::KeyPoint& kpt, float* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
}; };
...@@ -669,7 +669,7 @@ class Upright_MLDB_Full_Descriptor_Invoker : public cv::ParallelLoopBody ...@@ -669,7 +669,7 @@ class Upright_MLDB_Full_Descriptor_Invoker : public cv::ParallelLoopBody
public: public:
Upright_MLDB_Full_Descriptor_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options) Upright_MLDB_Full_Descriptor_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options)
: keypoints_(kpts) : keypoints_(kpts)
, descriptors_(desc) , descriptors_(desc)
, evolution_(evolution) , evolution_(evolution)
, options_(options) , options_(options)
{ {
...@@ -686,8 +686,8 @@ public: ...@@ -686,8 +686,8 @@ public:
void Get_Upright_MLDB_Full_Descriptor(const cv::KeyPoint& kpt, unsigned char* desc) const; void Get_Upright_MLDB_Full_Descriptor(const cv::KeyPoint& kpt, unsigned char* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
}; };
...@@ -721,8 +721,8 @@ public: ...@@ -721,8 +721,8 @@ public:
void Get_Upright_MLDB_Descriptor_Subset(const cv::KeyPoint& kpt, unsigned char* desc) const; void Get_Upright_MLDB_Descriptor_Subset(const cv::KeyPoint& kpt, unsigned char* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
...@@ -735,7 +735,7 @@ class MLDB_Full_Descriptor_Invoker : public cv::ParallelLoopBody ...@@ -735,7 +735,7 @@ class MLDB_Full_Descriptor_Invoker : public cv::ParallelLoopBody
public: public:
MLDB_Full_Descriptor_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options) MLDB_Full_Descriptor_Invoker(std::vector<cv::KeyPoint>& kpts, cv::Mat& desc, std::vector<TEvolution>& evolution, AKAZEOptions& options)
: keypoints_(kpts) : keypoints_(kpts)
, descriptors_(desc) , descriptors_(desc)
, evolution_(evolution) , evolution_(evolution)
, options_(options) , options_(options)
{ {
...@@ -753,8 +753,8 @@ public: ...@@ -753,8 +753,8 @@ public:
void Get_MLDB_Full_Descriptor(const cv::KeyPoint& kpt, unsigned char* desc) const; void Get_MLDB_Full_Descriptor(const cv::KeyPoint& kpt, unsigned char* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
}; };
...@@ -789,8 +789,8 @@ public: ...@@ -789,8 +789,8 @@ public:
void Get_MLDB_Descriptor_Subset(const cv::KeyPoint& kpt, unsigned char* desc) const; void Get_MLDB_Descriptor_Subset(const cv::KeyPoint& kpt, unsigned char* desc) const;
private: private:
std::vector<cv::KeyPoint>& keypoints_; std::vector<cv::KeyPoint>& keypoints_;
cv::Mat& descriptors_; cv::Mat& descriptors_;
std::vector<TEvolution>& evolution_; std::vector<TEvolution>& evolution_;
AKAZEOptions& options_; AKAZEOptions& options_;
...@@ -2295,5 +2295,4 @@ inline void check_descriptor_limits(int &x, int &y, int width, int height) { ...@@ -2295,5 +2295,4 @@ inline void check_descriptor_limits(int &x, int &y, int width, int height) {
*/ */
inline int fRound(float flt) { inline int fRound(float flt) {
return (int)(flt + 0.5f); return (int)(flt + 0.5f);
} }
\ No newline at end of file
/** /**
* @file config.h * @file config.h
* @brief Configuration file * @brief Configuration file
...@@ -24,13 +23,6 @@ ...@@ -24,13 +23,6 @@
// OpenCV Includes // OpenCV Includes
#include "precomp.hpp" #include "precomp.hpp"
// OpenMP Includes
#ifdef _OPENMP
#include <omp.h>
#else
#define omp_get_thread_num() 0
#endif
//************************************************************************************* //*************************************************************************************
//************************************************************************************* //*************************************************************************************
...@@ -122,8 +114,4 @@ struct TEvolution { ...@@ -122,8 +114,4 @@ struct TEvolution {
//************************************************************************************* //*************************************************************************************
//************************************************************************************* //*************************************************************************************
#endif #endif
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment