Home
last modified time | relevance | path

Searched refs:normL2Sqr (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/core/src/
Dkmeans.cpp82 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()
Dstat.cpp2402 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/
Dbase.hpp430 _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
Dmatx.hpp835 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/
Dfeatures2d.hpp697 return normL2Sqr<ValueType, ResultType>(a, b, size); in operator ()()
713 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size)); in operator ()()