Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/features2d/src/kaze/fed.h
16337 views
1
#ifndef __OPENCV_FEATURES_2D_FED_H__
2
#define __OPENCV_FEATURES_2D_FED_H__
3
4
//******************************************************************************
5
//******************************************************************************
6
7
// Includes
8
#include <vector>
9
10
//*************************************************************************************
11
//*************************************************************************************
12
13
// Declaration of functions
14
int fed_tau_by_process_time(const float& T, const int& M, const float& tau_max,
15
const bool& reordering, std::vector<float>& tau);
16
int fed_tau_by_cycle_time(const float& t, const float& tau_max,
17
const bool& reordering, std::vector<float> &tau) ;
18
int fed_tau_internal(const int& n, const float& scale, const float& tau_max,
19
const bool& reordering, std::vector<float> &tau);
20
bool fed_is_prime_internal(const int& number);
21
22
//*************************************************************************************
23
//*************************************************************************************
24
25
#endif // __OPENCV_FEATURES_2D_FED_H__
26
27