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

  /external/opencv/cv/src/
cvpyrsegmentation.cpp 189 const int max_iter = 3; /* maximum number of iterations */ local
319 for( cur_iter = 0; cur_iter < max_iter; cur_iter++ )
321 int is_last_iter = cur_iter == max_iter - 1;
603 const int max_iter = 3; /* maximum number of iterations */ local
739 for( cur_iter = 0; cur_iter < max_iter; cur_iter++ )
741 int is_last_iter = cur_iter == max_iter - 1;
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 820 const int MAX_ITER = 1000;
833 int max_iter; local
846 max_iter = params.term_crit.type & CV_TERMCRIT_ITER ? params.term_crit.max_iter : MAX_ITER;
847 max_iter = MIN( max_iter, MAX_ITER );
848 max_iter = MAX( max_iter, 1 )
888 int i, j, k, ivcount, ovcount, l_count, total = 0, max_iter; local
1063 int i, ivcount, ovcount, l_count, total = 0, max_iter, buf_sz, dcount0, dcount=0; local
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 370 constexpr const char *max_iter(const char *a, const char *b) { function in namespace:StringLiteral
374 return (a+1 >= b) ? a : max_iter(a, max_element(a+1, b));
    [all...]
  /external/opencv/ml/include/
ml.h 453 int max_iter; member in class:CvSVMSolver
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 890 int max_iter; member in struct:CvTermCriteria
895 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon )
900 t.max_iter = max_iter;
    [all...]

Completed in 576 milliseconds