Searched defs:min_dist (Results 1 - 10 of 10) sorted by relevance

/external/opencv/cv/src/
H A Dcvfeatureselect.cpp65 int min_dist; local
155 min_dist = cvRound( min_distance * min_distance );
194 if( min_dist != 0 )
202 if( dist < min_dist )
H A Dcvcalibinit.cpp1470 float min_dist = FLT_MAX; local
1495 if( dist < min_dist &&
1510 min_dist = dist;
1516 if( closest_corner_idx >= 0 && min_dist < FLT_MAX )
1532 if( dx * dx + dy * dy < min_dist )
1562 if( dist < min_dist )
H A Dcvhough.cpp851 icvHoughCirclesGradient( CvMat* img, float dp, float min_dist, argument
989 min_dist = MAX( min_dist, dp );
990 min_dist *= min_dist;
1006 if( (c[0] - cx)*(c[0] - cx) + (c[1] - cy)*(c[1] - cy) < min_dist )
1075 int method, double dp, double min_dist,
1102 if( dp <= 0 || min_dist <= 0 || canny_threshold <= 0 || acc_threshold <= 0 )
1103 CV_ERROR( CV_StsOutOfRange, "dp, min_dist, canny_threshold and acc_threshold must be all positive numbers" );
1138 CV_CALL( icvHoughCirclesGradient( img, (float)dp, (float)min_dist,
1074 cvHoughCircles( CvArr* src_image, void* circle_storage, int method, double dp, double min_dist, double param1, double param2, int min_radius, int max_radius ) argument
[all...]
H A Dcvstereogc.cpp279 int d, min_dist = INT_MAX; local
317 if( d < min_dist )
319 min_dist = d;
333 v->dist = min_dist;
/external/opencv/cvaux/src/
H A Dcvbgfg_acmmm2003.cpp501 int dist, min_dist = 2147483647, indx = -1; local
533 if( l == 3 && dist < min_dist )
535 min_dist = dist;
609 int dist, min_dist = 2147483647, indx = -1; local
638 if( l == 3 && dist < min_dist )
640 min_dist = dist;
H A Dcvhmm.cpp1023 float min_dist; local
1025 min_dist = icvSquareDistance((info->obs) + (counter * info->obs_size),
1034 if (dist < min_dist)
1036 min_dist = dist;
/external/opencv/cxcore/src/
H A Dcxutils.cpp174 double min_dist = DBL_MAX; local
198 if( min_dist > dist )
200 min_dist = dist;
/external/opencv/ml/src/
H A Dmlem.cpp621 double min_dist = DBL_MAX; local
644 if( min_dist > dist )
646 min_dist = dist;
/external/jpeg/
H A Djquant2.c661 INT32 minmaxdist, min_dist, max_dist, tdist; local
692 min_dist = tdist*tdist;
697 min_dist = tdist*tdist;
701 /* within cell range so no contribution to min_dist */
702 min_dist = 0;
715 min_dist += tdist*tdist;
720 min_dist += tdist*tdist;
724 /* within cell range so no contribution to min_dist */
737 min_dist += tdist*tdist;
742 min_dist
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djquant2.c661 INT32 minmaxdist, min_dist, max_dist, tdist; local
692 min_dist = tdist*tdist;
697 min_dist = tdist*tdist;
701 /* within cell range so no contribution to min_dist */
702 min_dist = 0;
715 min_dist += tdist*tdist;
720 min_dist += tdist*tdist;
724 /* within cell range so no contribution to min_dist */
737 min_dist += tdist*tdist;
742 min_dist
[all...]

Completed in 481 milliseconds