Searched refs:max_iter (Results 1 - 23 of 23) sorted by relevance

/external/eigen/demos/mandelbrot/
H A Dmandelbrot.cpp37 max_iter = (max_iter / iters_before_test) * iters_before_test;
93 while(j < max_iter/iters_before_test && pix_dont_diverge.any()); // any() is not yet vectorized by Eigen
98 buffer[4*(pix+i)] = 255*pix_iter[i]/max_iter;
115 max_iter = 128;
116 if(resolution < 1e-4f) max_iter += 128 * ( - 4 - std::log10(resolution));
154 +QString(", %1 iterations per pixel, ").arg(threads[0]->max_iter)
H A Dmandelbrot.h25 int id, max_iter; member in class:MandelbrotThread
/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...]
H A Dmlcnn.cpp66 int max_iter,
154 if( params->max_iter < 1 ) \
155 params->max_iter = 1; \
195 cnn_model->etalons, params->grad_estim_type, params->max_iter,
216 int max_iter,
251 for( n = 1; n <= max_iter; n++ )
433 cnn_model->etalons, params->grad_estim_type, params->max_iter,
H A Dmlsvm.cpp424 max_iter = kernel->params->term_crit.max_iter;
640 if( (this->*select_working_set_func)( i, j ) != 0 || iter++ >= max_iter )
2032 cvWriteInt( fs, "iterations", params.term_crit.max_iter );
2183 _params.term_crit.max_iter = cvReadIntByName( fs, tmp_node, "iterations", -1 );
2185 (_params.term_crit.max_iter >= 0 ? CV_TERMCRIT_ITER : 0);
H A Dmlrtrees.cpp306 const int max_ntrees = term_crit.max_iter;
H A Dmlem.cpp655 if( ++iter > termcrit.max_iter )
908 for( n = 0; n < params.term_crit.max_iter; n++ )
/external/opencv/cv/src/
H A Dcvsegmentation.cpp370 termcrit.max_iter = 5;
371 termcrit.max_iter = MAX(termcrit.max_iter,1);
372 termcrit.max_iter = MIN(termcrit.max_iter,100);
454 for( iter = 0; iter < termcrit.max_iter; iter++ )
H A Dcvcornersubpix.cpp99 max_iters = criteria.max_iter;
107 max_iters = criteria.max_iter;
H A Dcvposit.cpp143 if( (criteria.type & CV_TERMCRIT_ITER) && criteria.max_iter <= 0 )
234 converged |= ((criteria.type & CV_TERMCRIT_ITER) && (count == criteria.max_iter));
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;
H A Dcvcamshift.cpp95 for( i = 0; i < criteria.max_iter; i++ )
H A Dcvlkpyramid.cpp113 criteria->max_iter = max_iters;
406 winSize.width*2 + 1, level, criteria.max_iter,
503 for( j = 0; j < criteria.max_iter; j++ )
937 for( j = 0; j < criteria.max_iter; j++ )
H A Dcvsnakes.cpp388 if( (criteria.type & CV_TERMCRIT_ITER) && (iteration >= criteria.max_iter) )
H A Dcvcalibration.cpp109 criteria.max_iter = MIN(MAX(criteria.max_iter,1),1000);
111 criteria.max_iter = 30;
172 if( ++iters >= criteria.max_iter ||
238 if( ++iters >= criteria.max_iter ||
1129 const int max_iter = 20;
1293 for( i = 0; i < max_iter; i++ )
H A Dcvoptflowhs.cpp459 if( (criteria.type & CV_TERMCRIT_ITER) && (iter == criteria.max_iter) )
H A Dcvcontourtree.cpp757 level = criteria.max_iter;
/external/opencv/cvaux/src/
H A Dcveigenobjects.cpp464 // values calcLimit->max_iter and calcLimit->epsilon.
486 if( m1 > calcLimit->max_iter && calcLimit->type != CV_TERMCRIT_EPS )
487 m1 = calcLimit->max_iter;
677 m1 = calcLimit->max_iter = i;
680 m1 = calcLimit->max_iter;
1303 // values calcLimit->max_iter and calcLimit->epsilon.
1335 if( nEigens > calcLimit->max_iter && calcLimit->type != CV_TERMCRIT_EPS )
1336 nEigens = calcLimit->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;
/external/opencv/ml/include/
H A Dml.h453 int max_iter; member in class:CvSVMSolver
1402 int max_iter;
/external/opencv/cxcore/src/
H A Dcxarray.cpp3662 crit.max_iter = default_max_iters;
3673 if( criteria.max_iter <= 0 )
3676 crit.max_iter = criteria.max_iter;
3695 crit.max_iter = MAX( 1, crit.max_iter );
H A Dcxutils.cpp105 for( iter = 0; iter < termcrit.max_iter; iter++ )
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp417 constexpr const char *max_iter(const char *a, const char *b) { function in namespace:StringLiteral
421 return (a+1 >= b) ? a : max_iter(a, max_element(a+1, b));

Completed in 542 milliseconds