48 #include <visp3/core/vpConfig.h> 56 #if defined(VISP_HAVE_FUNC_ISNAN) || defined(VISP_HAVE_FUNC_STD_ISNAN) || defined(VISP_HAVE_FUNC_ISINF) || \ 57 defined(VISP_HAVE_FUNC_STD_ISINF) || defined(VISP_HAVE_FUNC_STD_ROUND) 61 #if defined(_WIN32) // Not defined in Microsoft math.h 64 #define M_PI 3.14159265358979323846 68 #define M_PI_2 (M_PI / 2.0) 72 #define M_PI_4 (M_PI / 4.0) 95 static inline double deg(
double rad) {
return (rad * 180.0) / M_PI; }
102 static inline double rad(
double deg) {
return (deg * M_PI) / 180.0; }
108 static inline double sqr(
double x) {
return x * x; }
111 static inline double fact(
unsigned int x);
114 static inline long double comb(
unsigned int n,
unsigned int p);
117 static inline int round(
const double x);
120 static inline int(sign)(
double x);
123 static inline bool nul(
double x,
double s = 0.001);
126 static inline bool equal(
double x,
double y,
double s = 0.001);
129 static inline bool greater(
double x,
double y,
double s = 0.001);
137 template <
class Type>
static Type
maximum(
const Type &a,
const Type &b) {
return (a > b) ? a : b; }
145 template <
class Type>
static Type
minimum(
const Type &a,
const Type &b) {
return (a < b) ? a : b; }
152 template <
class Type>
static Type
abs(
const Type &x) {
return (x < 0) ? -x : x; }
155 static double sinc(
double x);
156 static double sinc(
double sinx,
double x);
157 static double mcosc(
double cosx,
double x);
158 static double msinc(
double sinx,
double x);
161 static inline double sigmoid(
double x,
double x0 = 0.,
double x1 = 1.,
double n = 12.);
169 template <
class Type>
static void swap(Type &a, Type &b)
176 static bool isNaN(
const double value);
177 static bool isInf(
const double value);
179 template <
typename _Tp>
static inline _Tp
saturate(
unsigned char v) {
return _Tp(v); }
180 template <
typename _Tp>
static inline _Tp
saturate(
char v) {
return _Tp(v); }
181 template <
typename _Tp>
static inline _Tp
saturate(
unsigned short v) {
return _Tp(v); }
182 template <
typename _Tp>
static inline _Tp
saturate(
short v) {
return _Tp(v); }
183 template <
typename _Tp>
static inline _Tp
saturate(
unsigned v) {
return _Tp(v); }
184 template <
typename _Tp>
static inline _Tp
saturate(
int v) {
return _Tp(v); }
185 template <
typename _Tp>
static inline _Tp
saturate(
float v) {
return _Tp(v); }
186 template <
typename _Tp>
static inline _Tp
saturate(
double v) {
return _Tp(v); }
188 static double getMean(
const std::vector<double> &v);
189 static double getMedian(
const std::vector<double> &v);
190 static double getStdev(
const std::vector<double> &v,
const bool useBesselCorrection =
false);
192 static int modulo(
const int a,
const int n);
195 static const double ang_min_sinc;
196 static const double ang_min_mc;
207 if ((x == 1) || (x == 0))
209 return x * fact(x - 1);
224 return fact(n) / (fact(n - p) * fact(p));
237 #if defined(VISP_HAVE_FUNC_ROUND) 240 return (
int)::round(x);
241 #elif defined(VISP_HAVE_FUNC_STD_ROUND) 242 return (
int)std::round(x);
244 return (x > 0.0) ? ((int)floor(x + 0.5)) : ((
int)ceil(x - 0.5));
255 #ifndef DOXYGEN_SHOULD_SKIP_THIS 259 #ifndef DOXYGEN_SHOULD_SKIP_THIS 264 if (fabs(x) < std::numeric_limits<double>::epsilon())
290 bool vpMath::equal(
double x,
double y,
double s) {
return (nul(x - y, s)); }
316 double l0 = 1. / (1. + exp(0.5 * n));
317 double l1 = 1. / (1. + exp(-0.5 * n));
318 return (1. / (1. + exp(-n * ((x - x0) / (x1 - x0) - 0.5))) - l0) / (l1 - l0);
322 template <>
inline unsigned char vpMath::saturate<unsigned char>(
char v)
329 if (std::numeric_limits<char>::is_signed)
330 return (
unsigned char)(((std::max))((int)v, 0));
332 return (
unsigned char)((
unsigned int)v > SCHAR_MAX ? 0 : v);
335 template <>
inline unsigned char vpMath::saturate<unsigned char>(
unsigned short v)
337 return (
unsigned char)((std::min))((
unsigned int)v, (
unsigned int)UCHAR_MAX);
340 template <>
inline unsigned char vpMath::saturate<unsigned char>(
int v)
342 return (
unsigned char)((
unsigned int)v <= UCHAR_MAX ? v : v > 0 ? UCHAR_MAX : 0);
345 template <>
inline unsigned char vpMath::saturate<unsigned char>(
short v) {
return saturate<unsigned char>((int)v); }
347 template <>
inline unsigned char vpMath::saturate<unsigned char>(
unsigned int v)
349 return (
unsigned char)((std::min))(v, (
unsigned int)UCHAR_MAX);
352 template <>
inline unsigned char vpMath::saturate<unsigned char>(
float v)
355 return saturate<unsigned char>(iv);
358 template <>
inline unsigned char vpMath::saturate<unsigned char>(
double v)
361 return saturate<unsigned char>(iv);
365 template <>
inline char vpMath::saturate<char>(
unsigned char v) {
return (
char)((std::min))((int)v, SCHAR_MAX); }
367 template <>
inline char vpMath::saturate<char>(
unsigned short v)
369 return (
char)((std::min))((
unsigned int)v, (
unsigned int)SCHAR_MAX);
372 template <>
inline char vpMath::saturate<char>(
int v)
374 return (
char)((
unsigned int)(v - SCHAR_MIN) <= (
unsigned int)UCHAR_MAX ? v : v > 0 ? SCHAR_MAX : SCHAR_MIN);
377 template <>
inline char vpMath::saturate<char>(
short v) {
return saturate<char>((int)v); }
379 template <>
inline char vpMath::saturate<char>(
unsigned int v)
381 return (
char)((std::min))(v, (
unsigned int)SCHAR_MAX);
384 template <>
inline char vpMath::saturate<char>(
float v)
387 return saturate<char>(iv);
390 template <>
inline char vpMath::saturate<char>(
double v)
393 return saturate<char>(iv);
397 template <>
inline unsigned short vpMath::saturate<unsigned short>(
char v)
404 if (std::numeric_limits<char>::is_signed)
405 return (
unsigned char)(((std::max))((int)v, 0));
407 return (
unsigned char)((
unsigned int)v > SCHAR_MAX ? 0 : v);
410 template <>
inline unsigned short vpMath::saturate<unsigned short>(
short v)
412 return (
unsigned short)((std::max))((int)v, 0);
415 template <>
inline unsigned short vpMath::saturate<unsigned short>(
int v)
417 return (
unsigned short)((
unsigned int)v <= (
unsigned int)USHRT_MAX ? v : v > 0 ? USHRT_MAX : 0);
420 template <>
inline unsigned short vpMath::saturate<unsigned short>(
unsigned int v)
422 return (
unsigned short)((std::min))(v, (
unsigned int)USHRT_MAX);
425 template <>
inline unsigned short vpMath::saturate<unsigned short>(
float v)
428 return vpMath::saturate<unsigned short>(iv);
431 template <>
inline unsigned short vpMath::saturate<unsigned short>(
double v)
434 return vpMath::saturate<unsigned short>(iv);
438 template <>
inline short vpMath::saturate<short>(
unsigned short v) {
return (
short)((std::min))((int)v, SHRT_MAX); }
439 template <>
inline short vpMath::saturate<short>(
int v)
441 return (
short)((
unsigned int)(v - SHRT_MIN) <= (
unsigned int)USHRT_MAX ? v : v > 0 ? SHRT_MAX : SHRT_MIN);
443 template <>
inline short vpMath::saturate<short>(
unsigned int v)
445 return (
short)((std::min))(v, (
unsigned int)SHRT_MAX);
447 template <>
inline short vpMath::saturate<short>(
float v)
450 return vpMath::saturate<short>(iv);
452 template <>
inline short vpMath::saturate<short>(
double v)
455 return vpMath::saturate<short>(iv);
459 template <>
inline int vpMath::saturate<int>(
float v) {
return vpMath::round(v); }
461 template <>
inline int vpMath::saturate<int>(
double v) {
return vpMath::round(v); }
466 template <>
inline unsigned int vpMath::saturate<unsigned int>(
float v) {
return (
unsigned int)
vpMath::round(v); }
468 template <>
inline unsigned int vpMath::saturate<unsigned int>(
double v) {
return (
unsigned int)
vpMath::round(v); }
static _Tp saturate(double v)
static void swap(Type &a, Type &b)
static _Tp saturate(char v)
static double sigmoid(double x, double x0=0., double x1=1., double n=12.)
static _Tp saturate(unsigned char v)
static bool equal(double x, double y, double s=0.001)
Provides simple mathematics computation tools that are not available in the C mathematics library (ma...
static _Tp saturate(unsigned short v)
static double fact(unsigned int x)
static int round(const double x)
static Type abs(const Type &x)
static Type maximum(const Type &a, const Type &b)
static _Tp saturate(short v)
static bool nul(double x, double s=0.001)
static double sqr(double x)
static Type minimum(const Type &a, const Type &b)
static _Tp saturate(int v)
static double rad(double deg)
static _Tp saturate(unsigned v)
static _Tp saturate(float v)
static long double comb(unsigned int n, unsigned int p)
static double deg(double rad)
static bool greater(double x, double y, double s=0.001)
static int() sign(double x)