/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 | 48 static int hull(Vector2* points, int pointsLength, Vector2* retPoly);
|
SpotShadow.cpp | 154 * compute the convex hull of a collection of Points 161 int SpotShadow::hull(Vector2* points, int pointsLength, Vector2* retPoly) { function in class:android::uirenderer::SpotShadow 217 // TODO: Add test harness which verify that all the points are inside the hull. 573 int finalUmbraLength = hull(umbra, umbraLength, finalUmbra); 574 int finalPenumbraLength = hull(penumbra, penumbraLength, finalPenumbra); [all...] |
/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...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/shadowutil/ |
SpotShadow.java | 103 * Extracts the convex hull of a polygon. 109 private static int hull(@NonNull float[] points, int pointsLength, @NonNull float[] retPoly) { method in class:SpotShadow 500 int penumbraLength = hull(shadowRegion, shadowRegionLength, penumbra);
|
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |