blob: f2a78fce291b9f72744e883a2f4ee117053631d5 [file] [log] [blame]
Yash Chainani5458dea2022-06-29 21:05:02 -07001#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
14int fed_tau_by_process_timeV2(const float& T, const int& M,
15 const float& tau_max, const bool& reordering,
16 std::vector<float>& tau);
17int fed_tau_by_cycle_timeV2(const float& t, const float& tau_max,
18 const bool& reordering, std::vector<float>& tau);
19int fed_tau_internalV2(const int& n, const float& scale, const float& tau_max,
20 const bool& reordering, std::vector<float>& tau);
21bool fed_is_prime_internalV2(const int& number);
22
23//*************************************************************************************
24//*************************************************************************************
25
26#endif // __OPENCV_FEATURES_2D_FED_H__