#ifndef __OPENCV_FEATURES_2D_FED_H__1#define __OPENCV_FEATURES_2D_FED_H__23//******************************************************************************4//******************************************************************************56// Includes7#include <vector>89//*************************************************************************************10//*************************************************************************************1112// Declaration of functions13int fed_tau_by_process_time(const float& T, const int& M, const float& tau_max,14const bool& reordering, std::vector<float>& tau);15int fed_tau_by_cycle_time(const float& t, const float& tau_max,16const bool& reordering, std::vector<float> &tau) ;17int fed_tau_internal(const int& n, const float& scale, const float& tau_max,18const bool& reordering, std::vector<float> &tau);19bool fed_is_prime_internal(const int& number);2021//*************************************************************************************22//*************************************************************************************2324#endif // __OPENCV_FEATURES_2D_FED_H__252627