Home | History | Annotate | Download | only in test

Lines Matching refs:fs

53     int read_params( CvFileStorage* fs );
79 int CV_TemplMatchTest::read_params( CvFileStorage* fs )
81 int code = cvtest::ArrayTest::read_params( fs );
85 max_template_size = cvReadInt( find_param( fs, "max_template_size" ), max_template_size );
318 CvFileStorage* fs = cvOpenFileStorage( "_match_template.yml", 0, CV_STORAGE_WRITE );
319 cvWrite( fs, "image", &test_mat[INPUT][0] );
320 cvWrite( fs, "template", &test_mat[INPUT][1] );
321 cvWrite( fs, "ref", &test_mat[REF_OUTPUT][0] );
322 cvWrite( fs, "opencv", &test_mat[OUTPUT][0] );
323 cvWriteInt( fs, "method", method );
324 cvReleaseFileStorage( &fs );