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

  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 227 virtual int prepare_test_case( int test_case_idx );
230 virtual int validate_test_results( int test_case_idx );
236 virtual int update_progress( int progress, int test_case_idx, int count, double dt );
270 int test_case_idx; member in struct:cvtest::TestInfo
324 virtual void update_context( BaseTest* test, int test_case_idx, bool update_ts_context );
449 virtual int prepare_test_case( int test_case_idx );
450 virtual int validate_test_results( int test_case_idx );
452 virtual void prepare_to_validation( int test_case_idx );
453 virtual void get_test_array_types_and_sizes( int test_case_idx, vector<vector<Size> >& sizes, vector<vector<int> >& types );
454 virtual void fill_array( int test_case_idx, int i, int j, Mat& arr )
484 int test_case_idx; member in class:cvtest::BadArgTest
    [all...]
  /external/opencv3/modules/ts/src/
ts.cpp 257 int test_case_idx, count = get_test_case_count(); local
264 for( test_case_idx = ff && start_from >= 0 ? start_from : 0;
265 count < 0 || test_case_idx < count; test_case_idx++ )
267 ts->update_context( this, test_case_idx, ff );
268 progress = update_progress( progress, test_case_idx, count, (double)(t1 - t_start)/(freq*1000) );
270 code = prepare_test_case( test_case_idx );
282 if( validate_test_results( test_case_idx ) < 0 || ts->get_err_code() < 0 )
312 int BaseTest::update_progress( int progress, int test_case_idx, int count, double dt )
317 int t = cvRound( ((double)test_case_idx * width)/count )
    [all...]

Completed in 55 milliseconds