blob: f2a78fce291b9f72744e883a2f4ee117053631d5 [file] [log] [blame]
#ifndef __OPENCV_FEATURES_2D_FED_H__
#define __OPENCV_FEATURES_2D_FED_H__
//******************************************************************************
//******************************************************************************
// Includes
#include <vector>
//*************************************************************************************
//*************************************************************************************
// Declaration of functions
int fed_tau_by_process_timeV2(const float& T, const int& M,
const float& tau_max, const bool& reordering,
std::vector<float>& tau);
int fed_tau_by_cycle_timeV2(const float& t, const float& tau_max,
const bool& reordering, std::vector<float>& tau);
int fed_tau_internalV2(const int& n, const float& scale, const float& tau_max,
const bool& reordering, std::vector<float>& tau);
bool fed_is_prime_internalV2(const int& number);
//*************************************************************************************
//*************************************************************************************
#endif // __OPENCV_FEATURES_2D_FED_H__