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

  /external/opencv/cv/src/
cvconvhull.cpp 231 union { CvContour* c; CvSeq* s; } hull; local
238 hull.s = 0;
298 "The hull matrix should be continuous and have a single row or a single column" );
301 CV_ERROR( CV_StsBadSize, "The hull matrix size might be not enough to fit the hull" );
306 "The hull matrix must have the same type as input or 32sC1 (integers)" );
397 /* gather upper part of convex hull to output */
452 the bottom part of the convex hull is the mirrored top part
496 hull.s = hullseq;
497 hull.c->rect = cvBoundingRect( ptseq
536 CvSeq *ptseq = (CvSeq*)array, *hull = (CvSeq*)hullarray; local
    [all...]
cvcalibinit.cpp 1084 CvSeq *hull = cvConvexHull2( &pointMat, temp_storage, CV_CLOCKWISE, 1 ); local
    [all...]
  /frameworks/base/libs/hwui/
SpotShadow.h 47 static int hull(Vector2* points, int pointsLength, Vector2* retPoly);
SpotShadow.cpp 148 * compute the convex hull of a collection of Points
155 int SpotShadow::hull(Vector2* points, int pointsLength, Vector2* retPoly) { function in class:android::uirenderer::SpotShadow
211 // TODO: Add test harness which verify that all the points are inside the hull.
611 int finalUmbraLength = hull(umbra, umbraLength, finalUmbra);
612 int finalPenumbraLength = hull(penumbra, penumbraLength, finalPenumbra);
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 150 SkDQuad hull = q1.subDivide(t1s, t1e); local
151 SkDLine line = {{hull[2], hull[0]}};
152 const SkDLine* testLines[] = { &line, (const SkDLine*) &hull[0], (const SkDLine*) &hull[1] };
189 bool startInTriangle = hull.pointInHull(end);
194 bool endInTriangle = hull.pointInHull(end);
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 150 SkDQuad hull = q1.subDivide(t1s, t1e); local
151 SkDLine line = {{hull[2], hull[0]}};
152 const SkDLine* testLines[] = { &line, (const SkDLine*) &hull[0], (const SkDLine*) &hull[1] };
189 bool startInTriangle = hull.pointInHull(end);
194 bool endInTriangle = hull.pointInHull(end);
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticImplicit.cpp 158 Quadratic hull; local
159 sub_divide(q1, t1s, t1e, hull);
160 _Line line = {hull[2], hull[0]};
161 const _Line* testLines[] = { &line, (const _Line*) &hull[0], (const _Line*) &hull[1] };
195 bool startInTriangle = point_in_hull(hull, end);
200 bool endInTriangle = point_in_hull(hull, end);
  /external/skia/experimental/Intersection/
QuadraticImplicit.cpp 158 Quadratic hull; local
159 sub_divide(q1, t1s, t1e, hull);
160 _Line line = {hull[2], hull[0]};
161 const _Line* testLines[] = { &line, (const _Line*) &hull[0], (const _Line*) &hull[1] };
195 bool startInTriangle = point_in_hull(hull, end);
200 bool endInTriangle = point_in_hull(hull, end);
  /external/opencv/cv/include/
cvcompat.h 381 /* Calculates exact convex hull of 2d point set */
384 int orientation, int* hull, int* hullsize )
387 CvMat hull1 = cvMat( 1, num_points, CV_32SC1, hull );
393 /* Calculates exact convex hull of 2d point set stored in a sequence */
397 /* Calculates approximate convex hull of 2d point set */
399 orientation, hull, hullsize ) \
400 cvConvexHull( points, num_points, bound_rect, orientation, hull, hullsize )
402 /* Calculates approximate convex hull of 2d point set stored in a sequence */
    [all...]
  /external/chromium_org/third_party/d3/src/
d3.js     [all...]

Completed in 393 milliseconds