/external/opencv3/modules/imgproc/test/ |
test_contours.cpp | 129 min_blob_size = cvtest::clipInt( min_blob_size, 1, 100 ); 130 max_blob_size = cvtest::clipInt( max_blob_size, 1, 100 ); 135 max_log_blob_count = cvtest::clipInt( max_log_blob_count, 1, 10 ); 137 min_log_img_size = cvtest::clipInt( min_log_img_size, 1, 10 ); 138 max_log_img_size = cvtest::clipInt( max_log_img_size, 1, 10 );
|
test_templmatch.cpp | 86 max_template_size = cvtest::clipInt( max_template_size, 1, 100 );
|
test_histograms.cpp | 127 max_log_size = cvtest::clipInt( max_log_size, 1, 20 ); 129 img_max_log_size = cvtest::clipInt( img_max_log_size, 1, 9 ); 132 max_cdims = cvtest::clipInt( max_cdims, 1, 6 ); [all...] |
test_filter.cpp | 87 max_aperture_size = cvtest::clipInt( max_aperture_size, 1, 100 ); [all...] |
test_convhull.cpp | 261 min_log_size = cvtest::clipInt( min_log_size, 0, 8 ); 262 max_log_size = cvtest::clipInt( max_log_size, 0, 10 ); [all...] |
/external/opencv3/modules/ts/src/ |
ts_arrtest.cpp | 94 min_log_array_size = clipInt( min_log_array_size, 0, 20 ); 95 max_log_array_size = clipInt( max_log_array_size, min_log_array_size, 20 ); 96 test_case_count = clipInt( test_case_count, 0, 100000 );
|
/external/opencv3/modules/core/test/ |
test_ds.cpp | 407 struct_count = cvtest::clipInt( struct_count, 1, 100 ); 408 max_struct_size = cvtest::clipInt( max_struct_size, 1, 1<<20 ); 409 generations = cvtest::clipInt( generations, 1, 100 ); 410 iterations = cvtest::clipInt( iterations, 100, 1<<20 ); 412 min_log_storage_block_size = cvtest::clipInt( min_log_storage_block_size, 7, 20 ); 413 max_log_storage_block_size = cvtest::clipInt( max_log_storage_block_size, 416 min_log_elem_size = cvtest::clipInt( min_log_elem_size, 0, 8 ); 417 max_log_elem_size = cvtest::clipInt( max_log_elem_size, min_log_elem_size, 10 ); [all...] |
/external/opencv3/modules/video/test/ |
test_camshift.cpp | 103 min_log_size = cvtest::clipInt( min_log_size, 1, 10 ); 104 max_log_size = cvtest::clipInt( max_log_size, 1, 10 );
|
/external/opencv3/modules/ts/include/opencv2/ |
ts.hpp | 77 inline int clipInt( int val, int min_val, int max_val )
|