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

  /external/opencv3/modules/java/src/
imgproc+Subdiv2D.java 204 // C++: int edgeDst(int edge, Point2f* dstpt = 0)
207 //javadoc: Subdiv2D::edgeDst(edge, dstpt)
208 public int edgeDst(int edge, Point dstpt)
212 if(dstpt!=null){ dstpt.x = dstpt_out[0]; dstpt.y = dstpt_out[1]; }
360 // C++: int edgeDst(int edge, Point2f* dstpt = 0)
imgproc.cpp 504 // int edgeDst(int edge, Point2f* dstpt = 0)
516 Point2f dstpt; local
517 int _retval_ = me->edgeDst( (int)edge, &dstpt );
518 jdouble tmp_dstpt[2] = {dstpt.x, dstpt.y}; env->SetDoubleArrayRegion(dstpt_out, 0, 2, tmp_dstpt);
    [all...]
  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 81 int Subdiv2D::edgeDst(int edge, CV_OUT Point2f* dstpt) const
85 if( dstpt )
88 *dstpt = vtx[vidx].pt;
179 void Subdiv2D::setEdgePoints(int edge, int orgPt, int dstPt)
182 qedges[edge >> 2].pt[(edge + 2) & 3] = dstPt;
184 vtx[dstPt].firstEdge = edge ^ 2;
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 1174 milliseconds