Searched defs:max_iter (Results 1 - 6 of 6) sorted by relevance

/external/eigen/demos/mandelbrot/
H A Dmandelbrot.h25 int id, max_iter; member in class:MandelbrotThread
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp415 constexpr const char *max_iter(const char *a, const char *b) { function in namespace:StringLiteral
419 return (a+1 >= b) ? a : max_iter(a, max_element(a+1, b));
/external/opencv/cv/src/
H A Dcvpyrsegmentation.cpp189 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;
/external/opencv/ml/src/
H A Dmlann_mlp.cpp833 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 );
854 params.term_crit.max_iter = max_iter;
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/opencv/ml/include/
H A Dml.h453 int max_iter; member in class:CvSVMSolver
1402 int max_iter;
/external/opencv/cxcore/include/
H A Dcxtypes.h890 int max_iter; member in struct:CvTermCriteria
895 CV_INLINE CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon ) argument
900 t.max_iter = max_iter;

Completed in 144 milliseconds