Yash Chainani | 5458dea | 2022-06-29 21:05:02 -0700 | [diff] [blame] | 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_timeV2(const float& T, const int& M, |
| 15 | const float& tau_max, const bool& reordering, |
| 16 | std::vector<float>& tau); |
| 17 | int fed_tau_by_cycle_timeV2(const float& t, const float& tau_max, |
| 18 | const bool& reordering, std::vector<float>& tau); |
| 19 | int fed_tau_internalV2(const int& n, const float& scale, const float& tau_max, |
| 20 | const bool& reordering, std::vector<float>& tau); |
| 21 | bool fed_is_prime_internalV2(const int& number); |
| 22 | |
| 23 | //************************************************************************************* |
| 24 | //************************************************************************************* |
| 25 | |
| 26 | #endif // __OPENCV_FEATURES_2D_FED_H__ |