Searched refs:normL2Sqr (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/core/src/ |
D | kmeans.cpp | 82 tdist2[i] = std::min(normL2Sqr(data + step*i, data + stepci, dims), dist[i]); in operator ()() 117 dist[i] = normL2Sqr(data + step*i, data + step*centers[0], dims); in generateCentersPP() 192 const double dist = normL2Sqr(sample, center, dims); in operator ()() 387 double dist = normL2Sqr(sample, _old_center, dims); in kmeans()
|
D | stat.cpp | 2402 result += normL2Sqr<T, ST>(src, len*cn); in normL2_() 2468 result += normL2Sqr<T, ST>(src1, src2, len*cn); in normDiffL2_() 3457 dist[i] = normL2Sqr<_Tp, _Rt>(src1, src2 + step2*i, len); in batchDistL2Sqr_() 3463 dist[i] = mask[i] ? normL2Sqr<_Tp, _Rt>(src1, src2 + step2*i, len) : val0; in batchDistL2Sqr_() 3475 dist[i] = std::sqrt(normL2Sqr<_Tp, _Rt>(src1, src2 + step2*i, len)); in batchDistL2_() 3481 dist[i] = mask[i] ? std::sqrt(normL2Sqr<_Tp, _Rt>(src1, src2 + step2*i, len)) : val0; in batchDistL2_()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | base.hpp | 430 _AccTp normL2Sqr(const _Tp* a, int n) in normL2Sqr() function 476 _AccTp normL2Sqr(const _Tp* a, const _Tp* b, int n) in normL2Sqr() function 495 static inline float normL2Sqr(const float* a, const float* b, int n) in normL2Sqr() function
|
D | matx.hpp | 835 return std::sqrt(normL2Sqr<_Tp, double>(M.val, m*n)); in norm() 843 std::sqrt((double)normL2Sqr<_Tp, typename DataType<_Tp>::work_type>(M.val, m*n)); in norm()
|
/external/opencv3/modules/features2d/include/opencv2/ |
D | features2d.hpp | 697 return normL2Sqr<ValueType, ResultType>(a, b, size); in operator ()() 713 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size)); in operator ()()
|