Home
last modified time | relevance | path

Searched refs:contours2 (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/pathops/
DSkOpEdgeBuilder.h15 SkOpEdgeBuilder(const SkPathWriter& path, SkOpContour* contours2, SkChunkAlloc* allocator, in SkOpEdgeBuilder() argument
20 , fContoursHead(contours2) in SkOpEdgeBuilder()
25 SkOpEdgeBuilder(const SkPath& path, SkOpContour* contours2, SkChunkAlloc* allocator, in SkOpEdgeBuilder() argument
30 , fContoursHead(contours2) in SkOpEdgeBuilder()
/external/opencv3/modules/imgproc/test/
Dtest_contours.cpp73 CvSeq *contours, *contours2, *chain; member in CV_FindContourTest
245 contours = contours2 = chain = 0; in run_func()
258 contours2 = cvApproxChains( chain, storage, approx_method, 0, 0, 1 ); in run_func()
263 cvDrawContours( img[2], contours2, cvScalar(255), cvScalar(255), INT_MAX ); in run_func()
310 cvInitTreeNodeIterator( &iterator, i == 0 ? contours : contours2, INT_MAX ); in validate_test_results()
327 cvInitTreeNodeIterator( &iterator2, contours2, INT_MAX ); in validate_test_results()
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java775 List<MatOfPoint> contours2 = new ArrayList<MatOfPoint>(); in testFindContoursMatListOfMatMatIntIntPoint() local
782 …Imgproc.findContours(img2, contours2, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPL… in testFindContoursMatListOfMatMatIntIntPoint()
784 assertEquals(contours.size(), contours2.size()); in testFindContoursMatListOfMatMatIntIntPoint()
785 assertMatEqual(contours.get(0), contours2.get(0)); in testFindContoursMatListOfMatMatIntIntPoint()