Searched refs:fixed_point_mult (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/photo/src/ |
D | fast_nlmeans_denoising_invoker_commons.hpp | 135 static inline WT f(double dist, const float *h, WT fixed_point_mult) in f() 141 WT weight = (WT)cvRound(fixed_point_mult * w); in f() 142 if (weight < WEIGHT_THRESHOLD * fixed_point_mult) weight = 0; in f() 150 static inline Vec<ET, n> f(double dist, const float *h, ET fixed_point_mult) in f() 154 res[i] = calcWeight<T, ET>(dist, &h[i], fixed_point_mult); in f() 181 typename pixelInfo<WT>::sampleType fixed_point_mult) in calcWeight() argument 183 return calcWeight_<T, WT>::f(dist, h, fixed_point_mult); in calcWeight() 257 static inline WT f(double dist, const float *h, WT fixed_point_mult) in f() 263 WT weight = (WT)cvRound(fixed_point_mult * w); in f() 264 if (weight < WEIGHT_THRESHOLD * fixed_point_mult) weight = 0; in f() [all …]
|