HomeSort by relevance Sort by last modified time
    Searched refs:estimator (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 51 VelocityTracker::Estimator* outEstimator);
132 VelocityTracker::Estimator* outEstimator) {
190 VelocityTracker::Estimator estimator; local
195 &estimator);
202 env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
203 estimator.xCoeff);
204 env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
205 estimator.yCoeff);
206 env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree, estimator.degree)
    [all...]
  /frameworks/base/libs/ui/
Input.cpp 791 Estimator estimator; local
792 getEstimator(id, DEFAULT_DEGREE, DEFAULT_HORIZON, &estimator);
794 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
796 int(estimator.degree),
797 vectorToString(estimator.xCoeff, estimator.degree).string(),
798 vectorToString(estimator.yCoeff, estimator.degree).string(),
799 estimator.confidence)
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 616 CvHomographyEstimator estimator( MIN(count, 5) );
620 result = estimator.runLMeDS( M, m, &_H, tempMask, confidence );
622 result = estimator.runRANSAC( M, m, &_H, tempMask, ransacReprojThreshold, confidence );
624 result = estimator.runKernel( M, m, &_H ) > 0;
631 estimator.refine( M, m, &_H, 10 );
988 CvFMEstimator estimator( MIN(count, (method & 3) == CV_FM_7POINT ? 7 : 8) );
990 result = estimator.run7Point(m1, m2, &_F9x3);
992 result = estimator.run8Point(m1, m2, &_F3x3);
1001 result = estimator.runRANSAC(m1, m2, &_F3x3, tempMask, param1, param2 );
1003 result = estimator.runLMeDS(m1, m2, &_F3x3, tempMask, param2 )
    [all...]

Completed in 141 milliseconds