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

  /external/opencv3/modules/java/src/
imgproc+Subdiv2D.java 285 // C++: int findNearest(Point2f pt, Point2f* nearestPt = 0)
288 //javadoc: Subdiv2D::findNearest(pt, nearestPt)
289 public int findNearest(Point pt, Point nearestPt)
293 if(nearestPt!=null){ nearestPt.x = nearestPt_out[0]; nearestPt.y = nearestPt_out[1]; }
376 // C++: int findNearest(Point2f pt, Point2f* nearestPt = 0)
imgproc.cpp 661 // int findNearest(Point2f pt, Point2f* nearestPt = 0)
674 Point2f nearestPt;
675 int _retval_ = me->findNearest( pt, &nearestPt );
676 jdouble tmp_nearestPt[2] = {nearestPt.x, nearestPt.y}; env->SetDoubleArrayRegion(nearestPt_out, 0, 2, tmp_nearestPt);
    [all...]
  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 645 int Subdiv2D::findNearest(Point2f pt, Point2f* nearestPt)
703 if( nearestPt && vertex > 0 )
704 *nearestPt = vtx[vertex].pt;
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 233 milliseconds