Home
last modified time | relevance | path

Searched refs:nearestPt_out (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/java/src/
Dimgproc+Subdiv2D.java291 double[] nearestPt_out = new double[2]; in findNearest() local
292 int retVal = findNearest_0(nativeObj, pt.x, pt.y, nearestPt_out); in findNearest()
293 if(nearestPt!=null){ nearestPt.x = nearestPt_out[0]; nearestPt.y = nearestPt_out[1]; } in findNearest()
377 … static native int findNearest_0(long nativeObj, double pt_x, double pt_y, double[] nearestPt_out); in findNearest_0() argument
Dimgproc.cpp667 (JNIEnv* env, jclass , jlong self, jdouble pt_x, jdouble pt_y, jdoubleArray nearestPt_out) in Java_org_opencv_imgproc_Subdiv2D_findNearest_10() argument
676 …_nearestPt[2] = {nearestPt.x, nearestPt.y}; env->SetDoubleArrayRegion(nearestPt_out, 0, 2, tmp_nea… in Java_org_opencv_imgproc_Subdiv2D_findNearest_10()