Home
last modified time | relevance | path

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

/external/opencv/cv/src/
Dcvconvhull.cpp393 int tl_count = sklansky( pointer, 0, maxy_ind, tl_stack, -1, 1 ); in cvConvexHull2() local
394 int *tr_stack = tl_stack + tl_count; in cvConvexHull2()
401 CV_SWAP( tl_count, tr_count, t_count ); in cvConvexHull2()
406 for( i = 0; i < tl_count - 1; i++ ) in cvConvexHull2()
415 0, tl_count-1, ptseq, &writer )); in cvConvexHull2()
421 for( i = 0; i < tl_count - 1; i++ ) in cvConvexHull2()
427 stop_idx = tr_count > 2 ? tr_stack[1] : tl_count > 2 ? tl_stack[tl_count - 2] : -1; in cvConvexHull2()
/external/opencv3/modules/imgproc/src/
Dconvhull.cpp193 int tl_count = !is_float ? in convexHull() local
196 int *tr_stack = stack + tl_count; in convexHull()
205 std::swap( tl_count, tr_count ); in convexHull()
208 for( i = 0; i < tl_count-1; i++ ) in convexHull()
212 int stop_idx = tr_count > 2 ? tr_stack[1] : tl_count > 2 ? tl_stack[tl_count - 2] : -1; in convexHull()