HomeSort by relevance Sort by last modified time
    Searched refs:dist2 (Results 26 - 50 of 54) sorted by null

12 3

  /external/opencv3/modules/calib3d/src/
upnp.h 106 double dist2(const double * p1, const double * p2);
epnp.cpp 209 double epnp::dist2(const double * p1, const double * p2) function in class:cv::epnp
469 rho[0] = dist2(cws[0], cws[1]);
470 rho[1] = dist2(cws[0], cws[2]);
471 rho[2] = dist2(cws[0], cws[3]);
472 rho[3] = dist2(cws[1], cws[2]);
473 rho[4] = dist2(cws[1], cws[3]);
474 rho[5] = dist2(cws[2], cws[3]);
upnp.cpp 673 rho[0] = dist2(cws[0], cws[1]);
674 rho[1] = dist2(cws[0], cws[2]);
675 rho[2] = dist2(cws[0], cws[3]);
676 rho[3] = dist2(cws[1], cws[2]);
677 rho[4] = dist2(cws[1], cws[3]);
678 rho[5] = dist2(cws[2], cws[3]);
681 double upnp::dist2(const double * p1, const double * p2) function in class:upnp
circlesgrid.cpp 343 double dist2 = norm(sortedCorners[1] - sortedCorners[2]); local
345 if((dist1 > dist2 && patternSize.height > patternSize.width) || (dist1 < dist2 && patternSize.height < patternSize.width))
    [all...]
  /external/opencv3/modules/cudabgsegm/src/cuda/
mog2.cu 177 float dist2 = sqr(diff);
180 if (totalWeight < c_TB && dist2 < c_Tb * var)
184 if (dist2 < c_Tg * var)
199 float varnew = var + k * (dist2 - var);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btMprPenetration.h 667 float s, t, dist, dist2; local
716 dist2 = _btMprVec3PointSegmentDist2(P, x0, C, &witness2);
717 if (dist2 < dist){
718 dist = dist2;
723 dist2 = _btMprVec3PointSegmentDist2(P, B, C, &witness2);
724 if (dist2 < dist){
725 dist = dist2;
  /external/opencv3/modules/video/src/
bgfg_gaussmix2.cpp 600 float dist2; local
607 dist2 = dData[0]*dData[0] + dData[1]*dData[1] + dData[2]*dData[2];
611 dist2 = 0.f;
615 dist2 += dData[c]*dData[c];
620 if( totalWeight < TB && dist2 < Tb*var )
624 if( dist2 < Tg*var )
641 float varnew = var + k*(dist2-var);
    [all...]
  /external/opencv3/modules/photo/src/cuda/
nlm.cu 90 float dist2 = 0;
97 dist2 += norm2(av - bv);
100 float w = __expf(dist2 * noise_mult + (x * x + y * y) * minus_search_window2_inv);
103 printf("%f %f\n", w, dist2 * minus_h2_inv + (x * x + y * y) * minus_search_window2_inv);*/
114 float dist2 = 0;
120 dist2 += norm2(av - bv);
123 float w = __expf(dist2 * noise_mult + (x * x + y * y) * minus_search_window2_inv);
  /external/opencv/cvaux/src/
cvlee.cpp 2650 float radius1,radius2,dist1,dist2; local
3085 float radius1, radius2,dist1, dist2; local
3140 double dist1, dist2; local
3211 float radius1,radius2,dist1,dist2; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_points.c 329 const GLfloat dist2 = dx * dx + dy * dy; local
332 if (dist2 < rmax2) {
333 if (dist2 >= rmin2) {
335 coverage = 1.0F - (dist2 - rmin2) * cscale;
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
seam_finders.hpp 170 int dist2 = (p1.x-p2.x) * (p1.x-p2.x) + (p1.y-p2.y) * (p1.y-p2.y); local
171 return dist2 < minDist_ * minDist_;
  /external/skia/tests/
PathOpsAngleIdeas.cpp 763 double dist2 = v2.length() * m; local
765 SkDebugf("%c r1=%1.9g r2=%1.9g m=%1.9g dist1=%1.9g dist2=%1.9g "
767 endCtrlRatio(q1), endCtrlRatio(q2), m, dist1, dist2, dir > 0 ? '+' : '-',
772 bool use1 = fabs(dist1) < fabs(dist2);
774 SkDebugf("%c dist=%1.9g r=%1.9g\n", agrees ? 'T' : 'F', use1 ? dist1 : dist2,
775 use1 ? distEndRatio(dist1, q1) : distEndRatio(dist2, q2));
777 return fabs(use1 ? distEndRatio(dist1, q1) : distEndRatio(dist2, q2));
    [all...]
  /external/freetype/src/autofit/
afcjk.c 1057 FT_Pos dist2 = 0; local
1067 dist2 = AF_SEGMENT_DIST( link, link1 );
1068 if ( dist2 >= edge_distance_threshold )
1074 if ( dist2 >= edge_distance_threshold )
2048 FT_Pos dist1, dist2, span; local
    [all...]
aflatin2.c     [all...]
aflatin.c 3195 FT_Pos dist1, dist2, span, delta; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
afcjk.c 999 FT_Pos dist2 = 0; local
1009 dist2 = AF_SEGMENT_DIST( link, link1 );
1010 if ( dist2 >= edge_distance_threshold )
1016 if ( dist2 >= edge_distance_threshold )
1990 FT_Pos dist1, dist2, span; local
    [all...]
aflatin2.c     [all...]
aflatin.c 2743 FT_Pos dist1, dist2, span, delta; local
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
eval.pass.cpp 332 std::binomial_distribution<unsigned> dist2(5, 0.1);
335 assert(dist1(gen1) == dist2(gen2));
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/widget/multiwaveview/
GlowPadView.java 1210 private float dist2(float dx, float dy) { method in class:GlowPadView
    [all...]
  /frameworks/av/media/libstagefright/
AVIExtractor.cpp 1271 size_t dist2 = nextSyncSampleIndex - closestSampleIndex; local
    [all...]
  /external/skia/src/core/
SkStroke.cpp     [all...]
  /external/opencv3/modules/ml/src/
tree.cpp 787 double dist2 = 0., beta = c_weights[idx];
791 dist2 += t*t;
793 if( min_dist2 > dist2 )
795 min_dist2 = dist2;
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btConvexHull.cpp 1018 btScalar dist2 = GetDist(v[0],v[1],v[2],center); local
1020 if ( dist1 > dist2 )
  /external/opencv/ml/src/
mltree.cpp     [all...]

Completed in 1127 milliseconds

12 3