ts                583 3rdparty/include/ffmpeg_/libavformat/avformat.h     int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
ts               1712 3rdparty/include/ffmpeg_/libavformat/avformat.h int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags);
ts                 39 3rdparty/include/ffmpeg_/libavutil/timestamp.h static inline char *av_ts_make_string(char *buf, int64_t ts)
ts                 41 3rdparty/include/ffmpeg_/libavutil/timestamp.h     if (ts == AV_NOPTS_VALUE) snprintf(buf, AV_TS_MAX_STRING_SIZE, "NOPTS");
ts                 42 3rdparty/include/ffmpeg_/libavutil/timestamp.h     else                      snprintf(buf, AV_TS_MAX_STRING_SIZE, "%"PRId64, ts);
ts                 50 3rdparty/include/ffmpeg_/libavutil/timestamp.h #define av_ts2str(ts) av_ts_make_string((char[AV_TS_MAX_STRING_SIZE]){0}, ts)
ts                 61 3rdparty/include/ffmpeg_/libavutil/timestamp.h static inline char *av_ts_make_time_string(char *buf, int64_t ts, AVRational *tb)
ts                 63 3rdparty/include/ffmpeg_/libavutil/timestamp.h     if (ts == AV_NOPTS_VALUE) snprintf(buf, AV_TS_MAX_STRING_SIZE, "NOPTS");
ts                 64 3rdparty/include/ffmpeg_/libavutil/timestamp.h     else                      snprintf(buf, AV_TS_MAX_STRING_SIZE, "%.6g", av_q2d(*tb) * ts);
ts                 72 3rdparty/include/ffmpeg_/libavutil/timestamp.h #define av_ts2timestr(ts, tb) av_ts_make_time_string((char[AV_TS_MAX_STRING_SIZE]){0}, ts, tb)
ts                177 modules/calib3d/src/epnp.cpp   double Rs[4][3][3], ts[4][3];
ts                181 modules/calib3d/src/epnp.cpp   rep_errors[1] = compute_R_and_t(ut, Betas[1], Rs[1], ts[1]);
ts                185 modules/calib3d/src/epnp.cpp   rep_errors[2] = compute_R_and_t(ut, Betas[2], Rs[2], ts[2]);
ts                189 modules/calib3d/src/epnp.cpp   rep_errors[3] = compute_R_and_t(ut, Betas[3], Rs[3], ts[3]);
ts                195 modules/calib3d/src/epnp.cpp   Mat(3, 1, CV_64F, ts[N]).copyTo(t);
ts                 64 modules/calib3d/src/p3p.cpp     double Rs[4][3][3], ts[4][3];
ts                 66 modules/calib3d/src/p3p.cpp     int n = solve(Rs, ts, mu0, mv0, X0, Y0, Z0,  mu1, mv1, X1, Y1, Z1, mu2, mv2, X2, Y2, Z2);
ts                 74 modules/calib3d/src/p3p.cpp         double X3p = Rs[i][0][0] * X3 + Rs[i][0][1] * Y3 + Rs[i][0][2] * Z3 + ts[i][0];
ts                 75 modules/calib3d/src/p3p.cpp         double Y3p = Rs[i][1][0] * X3 + Rs[i][1][1] * Y3 + Rs[i][1][2] * Z3 + ts[i][1];
ts                 76 modules/calib3d/src/p3p.cpp         double Z3p = Rs[i][2][0] * X3 + Rs[i][2][1] * Y3 + Rs[i][2][2] * Z3 + ts[i][2];
ts                 89 modules/calib3d/src/p3p.cpp         t[i] = ts[ns][i];
ts                126 modules/calib3d/src/upnp.cpp   double Rs[3][3][3], ts[3][3];
ts                130 modules/calib3d/src/upnp.cpp   rep_errors[1] = compute_R_and_t(ut, Betas[1], Rs[1], ts[1]);
ts                134 modules/calib3d/src/upnp.cpp   rep_errors[2] = compute_R_and_t(ut, Betas[2], Rs[2], ts[2]);
ts                139 modules/calib3d/src/upnp.cpp   Mat(3, 1, CV_64F, ts[N]).copyTo(t);
ts                385 modules/calib3d/src/upnp.cpp     double Rs[3][3], ts[3];
ts                386 modules/calib3d/src/upnp.cpp     double error_i = compute_R_and_t( u, betas, Rs, ts);
ts                114 modules/calib3d/test/test_affine3d_estimator.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                159 modules/calib3d/test/test_affine3d_estimator.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                168 modules/calib3d/test/test_affine3d_estimator.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                177 modules/calib3d/test/test_affine3d_estimator.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                194 modules/calib3d/test/test_affine3d_estimator.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 99 modules/calib3d/test/test_cameracalibration.cpp     RNG& rng = ts->get_rng();
ts                157 modules/calib3d/test/test_cameracalibration.cpp     RNG& rng = ts->get_rng();
ts                287 modules/calib3d/test/test_cameracalibration.cpp     return cvtest::cmpEps2_64f( ts, val, ref_val, len, eps, param_name );
ts                340 modules/calib3d/test/test_cameracalibration.cpp     filepath = cv::format("%scv/cameracalibration/", ts->get_data_path().c_str() );
ts                345 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "Could not open file with list of test files: %s\n", filename.c_str() );
ts                360 modules/calib3d/test/test_cameracalibration.cpp         ts->update_context( this, currTest, true );
ts                364 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG,
ts                378 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "Image size in test file is incorrect\n" );
ts                388 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "Pattern size in test file is incorrect\n" );
ts                400 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "Number of images in test file is incorrect\n");
ts                618 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG,
ts                625 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG,
ts                666 modules/calib3d/test/test_cameracalibration.cpp         ts->set_failed_test_info( code );
ts                840 modules/calib3d/test/test_cameracalibration.cpp     RNG rng = ts->get_rng();
ts                889 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad fovx (real=%f, good = %f\n", fovx, goodFovx );
ts                895 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad fovy (real=%f, good = %f\n", fovy, goodFovy );
ts                901 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad focalLength (real=%f, good = %f\n", focalLength, goodFocalLength );
ts                907 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad aspectRatio (real=%f, good = %f\n", aspectRatio, goodAspectRatio );
ts                913 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad principalPoint\n" );
ts                919 modules/calib3d/test/test_cameracalibration.cpp     RNG& _rng = ts->get_rng();
ts                921 modules/calib3d/test/test_cameracalibration.cpp     ts->set_failed_test_info( code );
ts               1035 modules/calib3d/test/test_cameracalibration.cpp     RNG rng = ts->get_rng();
ts               1095 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "bad image point\n" );
ts               1118 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad dpdrot: too big difference = %g\n", err );
ts               1135 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad dpdtvec\n" );
ts               1158 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad dpdf\n" );
ts               1179 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad dpdc\n" );
ts               1198 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "bad dpddist\n" );
ts               1203 modules/calib3d/test/test_cameracalibration.cpp     RNG& _rng = ts->get_rng();
ts               1205 modules/calib3d/test/test_cameracalibration.cpp     ts->set_failed_test_info( code );
ts               1347 modules/calib3d/test/test_cameracalibration.cpp             ts->printf(cvtest::TS::LOG, "Test #%d. The point (%g, %g) was mapped to (%g, %g) which is out of image\n",
ts               1360 modules/calib3d/test/test_cameracalibration.cpp             ts->printf(cvtest::TS::LOG, "Test #%d. The ROI=(%d, %d, %d, %d) is outside of the imge rectangle\n",
ts               1367 modules/calib3d/test/test_cameracalibration.cpp             ts->printf(cvtest::TS::LOG, "Test #%d. The ratio of black pixels inside the valid ROI (~%g%%) is too large\n",
ts               1387 modules/calib3d/test/test_cameracalibration.cpp         filepath = cv::format("%scv/stereo/case%d/stereo_calib.txt", ts->get_data_path().c_str(), testcase );
ts               1394 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "The file %s can not be opened or has invalid content\n", filepath.c_str() );
ts               1395 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( f ? cvtest::TS::FAIL_INVALID_TEST_DATA : cvtest::TS::FAIL_MISSING_TEST_DATA );
ts               1409 modules/calib3d/test/test_cameracalibration.cpp             filepath = cv::format("%scv/stereo/case%d/%s", ts->get_data_path().c_str(), testcase, buf );
ts               1416 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "The number of images is 0 or an odd number in the case #%d\n", testcase );
ts               1417 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts               1435 modules/calib3d/test/test_cameracalibration.cpp                 ts->printf( cvtest::TS::LOG, "Can not load images %s and %s, testcase %d\n",
ts               1437 modules/calib3d/test/test_cameracalibration.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_MISSING_TEST_DATA );
ts               1445 modules/calib3d/test/test_cameracalibration.cpp                 ts->printf( cvtest::TS::LOG, "The function could not detect boards on the images %s and %s, testcase %d\n",
ts               1447 modules/calib3d/test/test_cameracalibration.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts               1473 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "The average reprojection error is too big (=%g), testcase %d\n", err, testcase);
ts               1474 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts               1488 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "The computed (by rectify) R1 and R2 are not orthogonal,"
ts               1490 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts               1496 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts               1502 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts               1510 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts               1520 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "A point after rectification is reprojected behind the camera, testcase %d\n", testcase);
ts               1521 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts               1531 modules/calib3d/test/test_cameracalibration.cpp         RNG& rng = ts->get_rng();
ts               1561 modules/calib3d/test/test_cameracalibration.cpp             ts->printf( cvtest::TS::LOG, "Points reprojected with a matrix Q and points reconstructed by triangulation are different, testcase %d\n", testcase);
ts               1562 modules/calib3d/test/test_cameracalibration.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts               1586 modules/calib3d/test/test_cameracalibration.cpp                 ts->printf( cvtest::TS::LOG, "Epipolar constraint is violated after correctMatches, testcase %d\n", testcase);
ts               1587 modules/calib3d/test/test_cameracalibration.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts               1640 modules/calib3d/test/test_cameracalibration.cpp                     ts->printf( cvtest::TS::LOG, "The distance between %s coordinates is too big(=%g) (used calibrated stereo), testcase %d\n",
ts               1642 modules/calib3d/test/test_cameracalibration.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts               1647 modules/calib3d/test/test_cameracalibration.cpp                     ts->printf( cvtest::TS::LOG, "The distance between %s coordinates is too big(=%g) (used uncalibrated stereo), testcase %d\n",
ts               1649 modules/calib3d/test/test_cameracalibration.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts               1655 modules/calib3d/test/test_cameracalibration.cpp         ts->printf( cvtest::TS::LOG, "Testcase %d. Max distance (calibrated) =%g\n"
ts                113 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "Bad shape of camera matrix returned \n");
ts                114 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                130 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                132 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->printf( cvtest::TS::LOG, "%d) Expected  [Fx Fy Cx Cy] = [%.3f %.3f %.3f %.3f]\n", r, fx, fy, cx, cy);
ts                133 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->printf( cvtest::TS::LOG, "%d) Estimated [Fx Fy Cx Cy] = [%.3f %.3f %.3f %.3f]\n", r, fx_e, fy_e, cx_e, cy_e);
ts                160 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->printf( cvtest::TS::LOG, "%d) DistCoeff exp=(%.2f, %.2f, %.4f, %.4f %.2f)\n", r, k1, k2, p1, p2, k3);
ts                161 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->printf( cvtest::TS::LOG, "%d) DistCoeff est=(%.2f, %.2f, %.4f, %.4f %.2f)\n", r, k1_e, k2_e, p1_e, p2_e, k3_e);
ts                162 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->printf( cvtest::TS::LOG, "%d) AbsError = [%.5f %.5f %.5f %.5f %.5f]\n", r, fabs(k1-k1_e), fabs(k2-k2_e), fabs(p1-p1_e), fabs(p2-p2_e), fabs(k3-k3_e));
ts                182 modules/calib3d/test/test_cameracalibration_artificial.cpp                         ts->printf( cvtest::TS::LOG, "%d) ...\n", r);
ts                185 modules/calib3d/test/test_cameracalibration_artificial.cpp                         ts->printf( cvtest::TS::LOG, "%d) Bad accuracy in returned tvecs. Index = %d\n", r, i);
ts                186 modules/calib3d/test/test_cameracalibration_artificial.cpp                         ts->printf( cvtest::TS::LOG, "%d) norm(tvec_est - tvec) = %f, norm(tvec_exp) = %f \n", r, norm(tvec_est - tvec), norm(tvec));
ts                189 modules/calib3d/test/test_cameracalibration_artificial.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                212 modules/calib3d/test/test_cameracalibration_artificial.cpp                         ts->printf( cvtest::TS::LOG, "%d) ...\n", r);
ts                215 modules/calib3d/test/test_cameracalibration_artificial.cpp                         ts->printf( cvtest::TS::LOG, "%d) Bad accuracy in returned rvecs (rotation matrs). Index = %d\n", r, i);
ts                216 modules/calib3d/test/test_cameracalibration_artificial.cpp                         ts->printf( cvtest::TS::LOG, "%d) norm(rot_mat_est - rot_mat_exp) = %f, norm(rot_mat_exp) = %f \n", r,
ts                221 modules/calib3d/test/test_cameracalibration_artificial.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                340 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "%d) Too big reproject error = %f\n", r, rep_error);
ts                341 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                355 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "%d) Too big reproject error without intrinsics = %f\n", r, rep_errorWOI);
ts                356 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                359 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->printf( cvtest::TS::LOG, "%d) Testing solvePnP...\n", r);
ts                372 modules/calib3d/test/test_cameracalibration_artificial.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                409 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "\n");
ts                412 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "artificial corners\n");
ts                416 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "findChessboard corners\n");
ts                420 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "cornersSubPix corners\n");
ts                424 modules/calib3d/test/test_cameracalibration_artificial.cpp             ts->printf( cvtest::TS::LOG, "4quad corners\n");
ts                318 modules/calib3d/test/test_cameracalibration_badarg.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                320 modules/calib3d/test/test_cameracalibration_badarg.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                445 modules/calib3d/test/test_cameracalibration_badarg.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                447 modules/calib3d/test/test_cameracalibration_badarg.cpp             ts->set_failed_test_info(cvtest::TS::OK);
ts                728 modules/calib3d/test/test_cameracalibration_badarg.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                730 modules/calib3d/test/test_cameracalibration_badarg.cpp             ts->set_failed_test_info(cvtest::TS::OK);
ts                141 modules/calib3d/test/test_chesscorners.cpp     ts->set_failed_test_info( cvtest::TS::OK );
ts                149 modules/calib3d/test/test_chesscorners.cpp             if (ts->get_err_code() != cvtest::TS::OK)
ts                155 modules/calib3d/test/test_chesscorners.cpp             if (ts->get_err_code() != cvtest::TS::OK)
ts                161 modules/calib3d/test/test_chesscorners.cpp             if (ts->get_err_code() != cvtest::TS::OK)
ts                179 modules/calib3d/test/test_chesscorners.cpp     ts->printf(cvtest::TS::LOG, "\nRunning batch %s\n", filename.c_str());
ts                188 modules/calib3d/test/test_chesscorners.cpp             folder = string(ts->get_data_path()) + "cv/cameracalibration/";
ts                191 modules/calib3d/test/test_chesscorners.cpp             folder = string(ts->get_data_path()) + "cv/cameracalibration/circles/";
ts                194 modules/calib3d/test/test_chesscorners.cpp             folder = string(ts->get_data_path()) + "cv/cameracalibration/asymmetric_circles/";
ts                203 modules/calib3d/test/test_chesscorners.cpp         ts->printf( cvtest::TS::LOG, "%s can not be readed or is not valid\n", (folder + filename).c_str() );
ts                204 modules/calib3d/test/test_chesscorners.cpp         ts->printf( cvtest::TS::LOG, "fs.isOpened=%d, board_list.empty=%d, board_list.isSeq=%d,board_list.size()%2=%d\n",
ts                206 modules/calib3d/test/test_chesscorners.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_MISSING_TEST_DATA );
ts                217 modules/calib3d/test/test_chesscorners.cpp         ts->update_context( this, idx, true );
ts                225 modules/calib3d/test/test_chesscorners.cpp             ts->printf( cvtest::TS::LOG, "one of chessboard images can't be read: %s\n", img_file.c_str() );
ts                226 modules/calib3d/test/test_chesscorners.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_MISSING_TEST_DATA );
ts                260 modules/calib3d/test/test_chesscorners.cpp             ts->printf( cvtest::TS::LOG, "chessboard is detected incorrectly in %s\n", img_file.c_str() );
ts                261 modules/calib3d/test/test_chesscorners.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                273 modules/calib3d/test/test_chesscorners.cpp                 ts.printf( cvtest::TS::LOG, "bad accuracy of corner guesses\n" );
ts                274 modules/calib3d/test/test_chesscorners.cpp                 ts.set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                292 modules/calib3d/test/test_chesscorners.cpp                 ts->printf( cvtest::TS::LOG, "Image %s: bad accuracy of adjusted corners %f\n", img_file.c_str(), err );
ts                293 modules/calib3d/test/test_chesscorners.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                297 modules/calib3d/test/test_chesscorners.cpp             ts->printf(cvtest::TS::LOG, "Error on %s is %f\n", img_file.c_str(), err);
ts                314 modules/calib3d/test/test_chesscorners.cpp     ts->printf(cvtest::TS::LOG, "Average error is %f (%d patterns have been found)\n", sum_error, count);
ts                402 modules/calib3d/test/test_chesscorners.cpp             ts->printf( cvtest::TS::LOG, "Chess board skipped - too small" );
ts                416 modules/calib3d/test/test_chesscorners.cpp             ts->printf( cvtest::TS::LOG, "Chess board corners not found\n" );
ts                417 modules/calib3d/test/test_chesscorners.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                425 modules/calib3d/test/test_chesscorners.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of corner guesses" );
ts                426 modules/calib3d/test/test_chesscorners.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                147 modules/calib3d/test/test_chesscorners_badarg.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                149 modules/calib3d/test/test_chesscorners_badarg.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                 78 modules/calib3d/test/test_chesscorners_timing.cpp     filepath = cv::format("%scv/cameracalibration/", ts->get_data_path().c_str() );
ts                 86 modules/calib3d/test/test_chesscorners_timing.cpp         ts->printf( cvtest::TS::LOG, "chessboard_timing_list.dat can not be readed or is not valid" );
ts                105 modules/calib3d/test/test_chesscorners_timing.cpp         ts->update_context( this, idx-1, true );
ts                115 modules/calib3d/test/test_chesscorners_timing.cpp             ts->printf( cvtest::TS::LOG, "one of chessboard images can't be read: %s\n", filename.c_str() );
ts                124 modules/calib3d/test/test_chesscorners_timing.cpp         ts->printf(cvtest::TS::LOG, "%s: chessboard %d:\n", imgname, is_chessboard);
ts                149 modules/calib3d/test/test_chesscorners_timing.cpp             ts->printf( cvtest::TS::LOG, "Error: chessboard was %sdetected in the image %s\n",
ts                156 modules/calib3d/test/test_chesscorners_timing.cpp             ts->printf( cvtest::TS::LOG, "Warning: results differ cvCheckChessboard %d, cvFindChessboardCorners %d\n",
ts                162 modules/calib3d/test/test_chesscorners_timing.cpp         ts->printf(cvtest::TS::LOG, "    cvCheckChessboard time s: %f, us per pixel: %f\n",
ts                166 modules/calib3d/test/test_chesscorners_timing.cpp         ts->printf(cvtest::TS::LOG, "    cvFindChessboard time s: %f, us per pixel: %f\n",
ts                184 modules/calib3d/test/test_chesscorners_timing.cpp         ts->set_failed_test_info( code );
ts                142 modules/calib3d/test/test_compose_rt.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                166 modules/calib3d/test/test_compose_rt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                181 modules/calib3d/test/test_compose_rt.cpp             ts->printf( cvtest::TS::LOG, "Invalid derivates by r1\n" );
ts                182 modules/calib3d/test/test_compose_rt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                190 modules/calib3d/test/test_compose_rt.cpp             ts->printf( cvtest::TS::LOG, "Invalid derivates by r2\n" );
ts                191 modules/calib3d/test/test_compose_rt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                199 modules/calib3d/test/test_compose_rt.cpp             ts->printf( cvtest::TS::LOG, "Invalid derivates by t1\n" );
ts                200 modules/calib3d/test/test_compose_rt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                208 modules/calib3d/test/test_compose_rt.cpp             ts->printf( cvtest::TS::LOG, "Invalid derivates by t2\n" );
ts                209 modules/calib3d/test/test_compose_rt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                125 modules/calib3d/test/test_cornerssubpix.cpp     RNG& rng = ts->get_rng();
ts                161 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "Warning: chessboard was not detected! Writing image to test.png\n");
ts                162 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "Size = %d, %d\n", pattern_size.width, pattern_size.height);
ts                163 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "Intrinsic params: fx = %f, fy = %f, cx = %f, cy = %f\n",
ts                166 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "Distortion matrix: %f, %f, %f, %f, %f\n",
ts                180 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "findChessboardCorners returns invalid corner coordinates!\n");
ts                194 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "findCornerSubpix returns invalid corner coordinates!\n");
ts                199 modules/calib3d/test/test_cornerssubpix.cpp         ts->printf(cvtest::TS::LOG, "Error after findChessboardCorners: %f, after findCornerSubPix: %f\n",
ts                207 modules/calib3d/test/test_cornerssubpix.cpp             ts->printf(cvtest::TS::LOG, "findCornerSubPix increases average error!\n");
ts                216 modules/calib3d/test/test_cornerssubpix.cpp     ts->printf(cvtest::TS::LOG, "Average error after findCornerSubpix: %f\n", sum_dist);
ts                219 modules/calib3d/test/test_cornerssubpix.cpp         ts->set_failed_test_info( code );
ts                224 modules/calib3d/test/test_cornerssubpix.cpp     RNG& rng = ts->get_rng();
ts                 62 modules/calib3d/test/test_decompose_projection.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 64 modules/calib3d/test/test_decompose_projection.cpp     cv::RNG& rng = ts->get_rng();
ts                 70 modules/calib3d/test/test_decompose_projection.cpp         ts->update_context(this, iter, true);
ts                116 modules/calib3d/test/test_decompose_projection.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                122 modules/calib3d/test/test_decompose_projection.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                128 modules/calib3d/test/test_decompose_projection.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                568 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts                629 modules/calib3d/test/test_fundam.cpp         RNG& rng = ts->get_rng();
ts                831 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts                900 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts                958 modules/calib3d/test/test_fundam.cpp         RNG& rng = ts->get_rng();
ts               1130 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts               1200 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts               1257 modules/calib3d/test/test_fundam.cpp         RNG& rng = ts->get_rng();
ts               1283 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts               1458 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts               1526 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts               1593 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts               1657 modules/calib3d/test/test_fundam.cpp     RNG& rng = ts->get_rng();
ts                252 modules/calib3d/test/test_homography.cpp         RNG& rng = ts->get_rng();
ts                116 modules/calib3d/test/test_modelest.cpp     RNG &rng = ts->get_rng();
ts                187 modules/calib3d/test/test_modelest.cpp         RNG &rng = ts->get_rng();
ts                221 modules/calib3d/test/test_modelest.cpp     RNG &rng = ts->get_rng();
ts                 83 modules/calib3d/test/test_posit.cpp     RNG& rng = ts->get_rng();
ts                122 modules/calib3d/test/test_posit.cpp         ts->update_context( this, counter, true );
ts                195 modules/calib3d/test/test_posit.cpp         code = cvtest::cmpEps2( ts, _rotation, _true_rotation, flEpsilon, false, "rotation matrix" );
ts                199 modules/calib3d/test/test_posit.cpp         code = cvtest::cmpEps2( ts, _translation, _true_translation, flEpsilon, false, "translation vector" );
ts                217 modules/calib3d/test/test_posit.cpp         ts->set_failed_test_info( code );
ts                 64 modules/calib3d/test/test_reproject_image_to_3d.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                160 modules/calib3d/test/test_reproject_image_to_3d.cpp                     ts->printf(cvtest::TS::LOG, "Missing values are handled improperly\n");
ts                161 modules/calib3d/test/test_reproject_image_to_3d.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                169 modules/calib3d/test/test_reproject_image_to_3d.cpp                         ts->printf(cvtest::TS::LOG, "case %d. too big error at (%d, %d): %g vs expected %g: res = (%g, %g, %g, w=%g) vs pixel_out = (%g, %g, %g)\n",
ts                172 modules/calib3d/test/test_reproject_image_to_3d.cpp                         ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                157 modules/calib3d/test/test_solvepnp_ransac.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                165 modules/calib3d/test/test_solvepnp_ransac.cpp         RNG rng = ts->get_rng();
ts                182 modules/calib3d/test/test_solvepnp_ransac.cpp                     ts->printf( cvtest::TS::LOG, "Invalid accuracy for method %d, failed %d tests from %d, maximum error equals %f, distortion mode equals %d\n",
ts                184 modules/calib3d/test/test_solvepnp_ransac.cpp                     ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                401 modules/calib3d/test/test_stereomatching.cpp     string dataPath = ts->get_data_path() + "cv/";
ts                406 modules/calib3d/test/test_stereomatching.cpp         ts->printf( cvtest::TS::LOG, "dataPath is empty" );
ts                407 modules/calib3d/test/test_stereomatching.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ARG_CHECK );
ts                415 modules/calib3d/test/test_stereomatching.cpp         ts->set_failed_test_info( code );
ts                422 modules/calib3d/test/test_stereomatching.cpp         ts->set_failed_test_info( code );
ts                436 modules/calib3d/test/test_stereomatching.cpp             ts->printf( cvtest::TS::LOG, "file %s can not be read or written\n", fullResultFilename.c_str() );
ts                437 modules/calib3d/test/test_stereomatching.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ARG_CHECK );
ts                458 modules/calib3d/test/test_stereomatching.cpp             ts->printf( cvtest::TS::LOG, "images or left ground-truth disparities of dataset %s can not be read", datasetName.c_str() );
ts                495 modules/calib3d/test/test_stereomatching.cpp     ts->set_failed_test_info( code );
ts                582 modules/calib3d/test/test_stereomatching.cpp         ts->printf( cvtest::TS::LOG, "\nquality of case named %s\n", caseNames[caseIdx].c_str() );
ts                583 modules/calib3d/test/test_stereomatching.cpp         ts->printf( cvtest::TS::LOG, "%s\n", RMS_STR.c_str() );
ts                585 modules/calib3d/test/test_stereomatching.cpp         ts->printf( cvtest::TS::LOG, "%s\n", BAD_PXLS_FRACTION_STR.c_str() );
ts                605 modules/calib3d/test/test_stereomatching.cpp         ts->printf( cvtest::TS::LOG, "datasetsParams can not be read " );
ts                626 modules/calib3d/test/test_stereomatching.cpp         ts->printf( cvtest::TS::LOG, "runParams can not be read " );
ts                643 modules/calib3d/test/test_stereomatching.cpp             ts->printf( cvtest::TS::LOG, "%s = %f\n", string(ERROR_PREFIXES[i]+errName).c_str(), *it );
ts                667 modules/calib3d/test/test_stereomatching.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of %s (valid=%f; calc=%f)\n", string(ERROR_PREFIXES[i]+errName).c_str(), *validIt, *calcIt );
ts                 86 modules/calib3d/test/test_undistort.cpp     RNG& rng = ts->get_rng();
ts                 98 modules/calib3d/test/test_undistort.cpp     RNG& rng = ts->get_rng();
ts                214 modules/calib3d/test/test_undistort.cpp     RNG& rng = ts->get_rng();
ts                260 modules/calib3d/test/test_undistort.cpp     RNG& rng = ts->get_rng();
ts                624 modules/calib3d/test/test_undistort.cpp     RNG& rng = ts->get_rng();
ts                665 modules/calib3d/test/test_undistort.cpp     RNG& rng = ts->get_rng();
ts                279 modules/calib3d/test/test_undistort_badarg.cpp     ts->set_failed_test_info(errcount > 0 ? cvtest::TS::FAIL_BAD_ARG_CHECK : cvtest::TS::OK);
ts                404 modules/calib3d/test/test_undistort_badarg.cpp     ts->set_failed_test_info(errcount > 0 ? cvtest::TS::FAIL_BAD_ARG_CHECK : cvtest::TS::OK);
ts                521 modules/calib3d/test/test_undistort_badarg.cpp     ts->set_failed_test_info(errcount > 0 ? cvtest::TS::FAIL_BAD_ARG_CHECK : cvtest::TS::OK);
ts                 90 modules/calib3d/test/test_undistort_points.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                 93 modules/calib3d/test/test_undistort_points.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts               1443 modules/core/test/test_arithm.cpp                 ts->update_context(this, iter, true);
ts               1516 modules/core/test/test_arithm.cpp            ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                127 modules/core/test/test_concatenation.cpp         ts->printf( cvtest::TS::LOG, "Concatenation failed");
ts                128 modules/core/test/test_concatenation.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_MISMATCH );
ts                108 modules/core/test/test_countnonzero.cpp     int n = 0; RNG& rng = ts->get_rng();
ts                137 modules/core/test/test_countnonzero.cpp     RNG& rng = ts->get_rng();
ts                192 modules/core/test/test_countnonzero.cpp         RNG& rng = ts->get_rng();
ts                315 modules/core/test/test_ds.cpp ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );\
ts                389 modules/core/test/test_ds.cpp     double sqrt_scale = sqrt(ts->get_test_case_count_scale());
ts                443 modules/core/test/test_ds.cpp     ts->printf( cvtest::TS::LOG, "file %s, line %d: %s\n(\"%s\" failed).\n"
ts                446 modules/core/test/test_ds.cpp     ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                524 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts                600 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts                648 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts                735 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts                982 modules/core/test/test_ds.cpp         RNG& rng = ts->get_rng();
ts               1068 modules/core/test/test_ds.cpp         RNG& rng = ts->get_rng();
ts               1238 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts               1372 modules/core/test/test_ds.cpp         RNG& rng = ts->get_rng();
ts               1450 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts               1795 modules/core/test/test_ds.cpp         RNG& rng = ts->get_rng();
ts               1875 modules/core/test/test_ds.cpp     RNG& rng = ts->get_rng();
ts               1912 modules/core/test/test_ds.cpp         RNG& rng = ts->get_rng();
ts               2027 modules/core/test/test_ds.cpp                     ts->printf( cvtest::TS::LOG, "%s", event );
ts               2031 modules/core/test/test_ds.cpp                             ts->printf( cvtest::TS::LOG, ": (%d,%d)", a, b );
ts               2033 modules/core/test/test_ds.cpp                             ts->printf( cvtest::TS::LOG, ": %d", a );
ts               2036 modules/core/test/test_ds.cpp                     ts->printf( cvtest::TS::LOG, "\n" );
ts                537 modules/core/test/test_dxt.cpp     RNG& rng = ts->get_rng();
ts                797 modules/core/test/test_dxt.cpp         if( ts->get_current_test_info()->test_case_idx & 1 )
ts                 92 modules/core/test/test_io.cpp         RNG& rng = ts->get_rng();
ts                100 modules/core/test/test_io.cpp             ts->update_context( this, idx, false );
ts                195 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "filename %s can not be read\n", !mem ? filename.c_str() : content.c_str());
ts                196 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_MISSING_TEST_DATA );
ts                208 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the read scalars are not correct\n" );
ts                209 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                224 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the read matrix is not correct: (%.20g vs %.20g) at (%d,%d)\n",
ts                227 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                238 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the read nd-matrix is not correct\n" );
ts                239 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                254 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "readObj method: the read nd matrix is not correct: (%.20g vs %.20g) vs at (%d,%d)\n",
ts                257 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                272 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "C++ method: the read nd matrix is not correct: (%.20g vs %.20g) vs at (%d,%d)\n",
ts                275 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                292 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the read sparse matrix is not correct\n" );
ts                293 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                309 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the test list is incorrect\n" );
ts                310 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                353 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the test map is incorrect\n" );
ts                354 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                362 modules/core/test/test_io.cpp                 ts->printf( cvtest::TS::LOG, "the cloned or read graph have wrong number of vertices or edges\n" );
ts                363 modules/core/test/test_io.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                374 modules/core/test/test_io.cpp                     ts->printf( cvtest::TS::LOG, "the cloned or read graph do not have the edge (%d, %d)\n", edges[i][0], edges[i][1] );
ts                375 modules/core/test/test_io.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                508 modules/core/test/test_io.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                159 modules/core/test/test_mat.cpp         ts->printf( cvtest::TS::LOG, msg );
ts                283 modules/core/test/test_mat.cpp     ts->set_failed_test_info( code );
ts                304 modules/core/test/test_mat.cpp         RNG& rng = ts->get_rng();
ts                346 modules/core/test/test_mat.cpp                 ts->printf( cvtest::TS::LOG, "bad accuracy of eigen(); err = %f\n", err );
ts                347 modules/core/test/test_mat.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                356 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "pca.eigenvalues is incorrect (CV_PCA_DATA_AS_ROW); err = %f\n", err );
ts                357 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                377 modules/core/test/test_mat.cpp                     ts->printf( cvtest::TS::LOG, "pca.eigenvectors is incorrect (CV_PCA_DATA_AS_ROW); err = %f\n", err );
ts                378 modules/core/test/test_mat.cpp                     ts->printf( cvtest::TS::LOG, "max diff is %g at (i=%d, j=%d) (%g vs %g)\n",
ts                381 modules/core/test/test_mat.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                396 modules/core/test/test_mat.cpp                 ts->printf( cvtest::TS::LOG, "bad accuracy of project() (CV_PCA_DATA_AS_ROW); err = %f\n", err );
ts                397 modules/core/test/test_mat.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                405 modules/core/test/test_mat.cpp                 ts->printf( cvtest::TS::LOG, "bad accuracy of backProject() (CV_PCA_DATA_AS_ROW); err = %f\n", err );
ts                406 modules/core/test/test_mat.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                418 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of project() (CV_PCA_DATA_AS_COL); err = %f\n", err );
ts                419 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                425 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of backProject() (CV_PCA_DATA_AS_COL); err = %f\n", err );
ts                426 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                442 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of project() (CV_PCA_DATA_AS_COL); retainedVariance=0.95; err = %f\n", err );
ts                443 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                449 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of backProject() (CV_PCA_DATA_AS_COL); retainedVariance=0.95; err = %f\n", err );
ts                450 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                473 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of cvProjectPCA() (CV_PCA_DATA_AS_ROW); err = %f\n", err );
ts                474 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                480 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of cvBackProjectPCA() (CV_PCA_DATA_AS_ROW); err = %f\n", err );
ts                481 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                501 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of cvProjectPCA() (CV_PCA_DATA_AS_COL); err = %f\n", err );
ts                502 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                508 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of cvBackProjectPCA() (CV_PCA_DATA_AS_COL); err = %f\n", err );
ts                509 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                524 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of write/load functions (YML); err = %f\n", err );
ts                525 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                530 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of write/load functions (YML); err = %f\n", err );
ts                531 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                536 modules/core/test/test_mat.cpp             ts->printf( cvtest::TS::LOG, "bad accuracy of write/load functions (YML); err = %f\n", err );
ts                537 modules/core/test/test_mat.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                694 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "one of cvSetReal3D, cvSetRealND, cvSet3D, cvSetND "
ts                717 modules/core/test/test_mat.cpp                             ts->printf(cvtest::TS::LOG, "forEach is not correct.\n"
ts                734 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "forEach is not correct because total is invalid.\n");
ts                807 modules/core/test/test_mat.cpp                 ts->printf(cvtest::TS::LOG, "%d. immediately after SparseMat[%s]=%.20g the current value is %.20g\n",
ts                828 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%d: The number of non-zero elements before/after converting to/from dense matrix is not correct: %d/%d (while it should be %d)\n",
ts                838 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%d: The norms are different: %.20g/%.20g/%.20g vs %.20g/%.20g/%.20g\n",
ts                869 modules/core/test/test_mat.cpp                 ts->printf(cvtest::TS::LOG, "SparseMat M[%s] = %g/%g/%g (while it should be %g)\n", sidx.c_str(), val1, val2, val3, val0 );
ts                895 modules/core/test/test_mat.cpp                 ts->printf(cvtest::TS::LOG, "SparseMat: after deleting M[%s], it is =%g/%g (while it should be 0)\n", sidx.c_str(), val1, val2 );
ts                904 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "The number of non-zero elements after removing all the elements = %d (while it should be 0)\n", nz );
ts                916 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%d. Sparse: The value and positions of minimum/maximum elements are different from the reference values and positions:\n\t"
ts                928 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%d. Dense: The value and positions of minimum/maximum elements are different from the reference values and positions:\n\t"
ts                935 modules/core/test/test_mat.cpp     ts->set_failed_test_info(errcount == 0 ? cvtest::TS::OK : cvtest::TS::FAIL_INVALID_OUTPUT);
ts               1029 modules/core/test/test_mat.cpp         ts->set_failed_test_info(res);
ts               1062 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%s incorrect depth of dst (%d instead of %d)\n",
ts               1068 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%s incorrect size of dst (%d x %d instead of %d x %d)\n",
ts               1074 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%s: incorrect channels count of dst (%d instead of %d)\n",
ts               1082 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%s: there are incorrect elements in dst (part of them is %f)\n",
ts               1111 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%s incorrect count of matrices in dst (%d instead of %d)\n",
ts               1119 modules/core/test/test_mat.cpp                 ts->printf(cvtest::TS::LOG, "%s incorrect size of dst[%d] (%d x %d instead of %d x %d)\n",
ts               1125 modules/core/test/test_mat.cpp                 ts->printf(cvtest::TS::LOG, "%s: incorrect depth of dst[%d] (%d instead of %d)\n",
ts               1131 modules/core/test/test_mat.cpp                 ts->printf(cvtest::TS::LOG, "%s: incorrect channels count of dst[%d] (%d instead of %d)\n",
ts               1140 modules/core/test/test_mat.cpp             ts->printf(cvtest::TS::LOG, "%s: there are incorrect elements in dst (part of them is %f)\n",
ts                 55 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                100 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                139 modules/core/test/test_math.cpp     double l, u = cvtest::randInt(ts->get_rng())%1000 + 1;
ts                395 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                520 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                625 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                733 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                830 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts                928 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               1090 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               1170 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               1380 modules/core/test/test_math.cpp         cvTsFloodWithZeros( test_mat[INPUT][0], ts->get_rng() );
ts               1518 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               1558 modules/core/test/test_math.cpp         cvTsFloodWithZeros( test_mat[INPUT][0], ts->get_rng() );
ts               1673 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               1816 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               1893 modules/core/test/test_math.cpp         cvTsFloodWithZeros( input, ts->get_rng() );
ts               2044 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               2108 modules/core/test/test_math.cpp         cvTsFloodWithZeros( input, ts->get_rng() );
ts               2227 modules/core/test/test_math.cpp     RNG& rng = ts->get_rng();
ts               2335 modules/core/test/test_math.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts               2336 modules/core/test/test_math.cpp             ts->printf( cvtest::TS::LOG, "too big diff = %g\n", div );
ts               2339 modules/core/test/test_math.cpp                 ts->printf( cvtest::TS::LOG, "ar2[%d]=%g\n", j, ar2[j]);
ts               2340 modules/core/test/test_math.cpp             ts->printf(cvtest::TS::LOG, "\n");
ts               2343 modules/core/test/test_math.cpp                 ts->printf( cvtest::TS::LOG, "r[%d]=(%g, %g)\n", j, r[j].real(), r[j].imag());
ts               2344 modules/core/test/test_math.cpp             ts->printf( cvtest::TS::LOG, "\n" );
ts               2346 modules/core/test/test_math.cpp                 ts->printf( cvtest::TS::LOG, "ar[%d]=(%g, %g)\n", j, ar[j].real(), ar[j].imag());
ts               2419 modules/core/test/test_math.cpp             ts->printf(cvtest::TS::LOG, "There are result angles that are out of range [0, 360] (part of them is %f)\n",
ts               2421 modules/core/test/test_math.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts               2428 modules/core/test/test_math.cpp             ts->printf(cvtest::TS::LOG, "There are incorrect result angles (in degrees) (part of them is %f)\n",
ts               2430 modules/core/test/test_math.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts               2437 modules/core/test/test_math.cpp             ts->printf(cvtest::TS::LOG, "There are incorrect result angles (in radians)\n");
ts               2438 modules/core/test/test_math.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts               2441 modules/core/test/test_math.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts               2655 modules/core/test/test_math.cpp                 ts->update_context(this, iter, true);
ts               2734 modules/core/test/test_math.cpp             ts->printf(cvtest::TS::LOG,
ts               2738 modules/core/test/test_math.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                430 modules/core/test/test_operations.cpp         ts->printf(cvtest::TS::LOG, "%s\n", e.s.c_str());
ts                431 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                458 modules/core/test/test_operations.cpp         ts->printf(cvtest::TS::LOG, "%s\n", e.s.c_str());
ts                459 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                495 modules/core/test/test_operations.cpp         ts->printf(cvtest::TS::LOG, "%s\n", e.s.c_str());
ts                496 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                815 modules/core/test/test_operations.cpp         ts->printf(cvtest::TS::LOG, "%s\n", e.s.c_str());
ts                816 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                846 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                889 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                911 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                941 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts               1044 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts               1106 modules/core/test/test_operations.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts               1150 modules/core/test/test_operations.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts               1170 modules/core/test/test_operations.cpp                 ts->printf(cvtest::TS::LOG, ".");
ts               1171 modules/core/test/test_operations.cpp                 ts->update_context(this, iter, true);
ts               1237 modules/core/test/test_operations.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                 97 modules/core/test/test_rand.cpp     RNG& rng = ts->get_rng();
ts                104 modules/core/test/test_rand.cpp         ts->update_context( this, idx, false );
ts                179 modules/core/test/test_rand.cpp             ts->printf( cvtest::TS::LOG, "RNG output depends on the array lengths (some generated numbers get lost?)" );
ts                180 modules/core/test/test_rand.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                227 modules/core/test/test_rand.cpp                 ts->printf( cvtest::TS::LOG, "Uniform RNG gave values out of the range [%g,%g) on channel %d/%d\n",
ts                229 modules/core/test/test_rand.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                234 modules/core/test/test_rand.cpp                 ts->printf( cvtest::TS::LOG, "Normal RNG gave too many values out of the range (%g+4*%g,%g+4*%g) on channel %d/%d\n",
ts                236 modules/core/test/test_rand.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                243 modules/core/test/test_rand.cpp                 ts->printf( cvtest::TS::LOG, "RNG failed Chi-square test "
ts                246 modules/core/test/test_rand.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                295 modules/core/test/test_rand.cpp                 ts->printf( cvtest::TS::LOG, "RNG failed %d-dim sphere volume test (got %g instead of %g)\n",
ts                297 modules/core/test/test_rand.cpp                 ts->printf( cvtest::TS::LOG, "depth = %d, N0 = %d\n", depth, N0);
ts                298 modules/core/test/test_rand.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                 69 modules/core/test/test_rotatedrect.cpp     RNG& rng = ts->get_rng();
ts                102 modules/core/test/test_rotatedrect.cpp     ts->printf( cvtest::TS::LOG, "RotatedRect end points don't match those supplied in constructor");
ts                103 modules/core/test/test_rotatedrect.cpp     ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                682 modules/core/test/test_umat.cpp         ts->printf(cvtest::TS::LOG, "%s\n", e.s.c_str());
ts                683 modules/core/test/test_umat.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                698 modules/core/test/test_umat.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 63 modules/features2d/test/test_agast.cpp     Mat image1 = imread(string(ts->get_data_path()) + "inpaint/orig.png");
ts                 64 modules/features2d/test/test_agast.cpp     Mat image2 = imread(string(ts->get_data_path()) + "cameracalibration/chess9.png");
ts                 65 modules/features2d/test/test_agast.cpp     string xml = string(ts->get_data_path()) + format("agast/result%d.xml", type);
ts                 69 modules/features2d/test/test_agast.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                103 modules/features2d/test/test_agast.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                112 modules/features2d/test/test_agast.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                125 modules/features2d/test/test_agast.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                134 modules/features2d/test/test_agast.cpp   ts->set_failed_test_info(cvtest::TS::OK);
ts                 62 modules/features2d/test/test_brisk.cpp   Mat image1 = imread(string(ts->get_data_path()) + "inpaint/orig.png");
ts                 63 modules/features2d/test/test_brisk.cpp   Mat image2 = imread(string(ts->get_data_path()) + "cameracalibration/chess9.png");
ts                 67 modules/features2d/test/test_brisk.cpp       ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                117 modules/features2d/test/test_descriptors_regression.cpp             ts->printf(cvtest::TS::LOG, "Valid and computed descriptors matrices must have the same size and type.\n");
ts                118 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                140 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                142 modules/features2d/test/test_descriptors_regression.cpp         ts->printf(cvtest::TS::LOG,  ss.str().c_str() );
ts                160 modules/features2d/test/test_descriptors_regression.cpp             ts->printf( cvtest::TS::LOG, "compute() on empty image and empty keypoints must not generate exception (1).\n");
ts                161 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                171 modules/features2d/test/test_descriptors_regression.cpp             ts->printf( cvtest::TS::LOG, "compute() on nonempty image and empty keypoints must not generate exception (1).\n");
ts                172 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                185 modules/features2d/test/test_descriptors_regression.cpp             ts->printf( cvtest::TS::LOG, "compute() on empty images and empty keypoints collection must not generate exception (2).\n");
ts                186 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                195 modules/features2d/test/test_descriptors_regression.cpp         string imgFilename =  string(ts->get_data_path()) + FEATURES2D_DIR + "/" + IMAGE_FILENAME;
ts                199 modules/features2d/test/test_descriptors_regression.cpp             ts->printf( cvtest::TS::LOG, "Image %s can not be read.\n", imgFilename.c_str() );
ts                200 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                204 modules/features2d/test/test_descriptors_regression.cpp         FileStorage fs( string(ts->get_data_path()) + FEATURES2D_DIR + "/keypoints.xml.gz", FileStorage::READ );
ts                216 modules/features2d/test/test_descriptors_regression.cpp             ts->printf(cvtest::TS::LOG, "\nAverage time of computing one descriptor = %g ms.\n", t/((double)getTickFrequency()*1000.)/calcDescriptors.rows);
ts                220 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Count of computed descriptors and keypoints count must be equal.\n" );
ts                221 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Count of keypoints is            %d.\n", (int)keypoints.size() );
ts                222 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Count of computed descriptors is %d.\n", calcDescriptors.rows );
ts                223 modules/features2d/test/test_descriptors_regression.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                229 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Incorrect descriptor size or descriptor type.\n" );
ts                230 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Expected size is   %d.\n", dextractor->descriptorSize() );
ts                231 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Calculated size is %d.\n", calcDescriptors.cols );
ts                232 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Expected type is   %d.\n", dextractor->descriptorType() );
ts                233 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf( cvtest::TS::LOG, "Calculated type is %d.\n", calcDescriptors.type() );
ts                234 modules/features2d/test/test_descriptors_regression.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                246 modules/features2d/test/test_descriptors_regression.cpp                     ts->printf( cvtest::TS::LOG, "Descriptors can not be written.\n" );
ts                247 modules/features2d/test/test_descriptors_regression.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                254 modules/features2d/test/test_descriptors_regression.cpp             ts->printf( cvtest::TS::LOG, "Compute and write keypoints.\n" );
ts                255 modules/features2d/test/test_descriptors_regression.cpp             fs.open( string(ts->get_data_path()) + FEATURES2D_DIR + "/keypoints.xml.gz", FileStorage::WRITE );
ts                264 modules/features2d/test/test_descriptors_regression.cpp                 ts->printf(cvtest::TS::LOG, "File for writting keypoints can not be opened.\n");
ts                265 modules/features2d/test/test_descriptors_regression.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                276 modules/features2d/test/test_descriptors_regression.cpp             ts->printf(cvtest::TS::LOG, "Descriptor extractor is empty.\n");
ts                277 modules/features2d/test/test_descriptors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                284 modules/features2d/test/test_descriptors_regression.cpp         ts->set_failed_test_info( cvtest::TS::OK );
ts                289 modules/features2d/test/test_descriptors_regression.cpp         Mat res = readMatFromBin( string(ts->get_data_path()) + DESCRIPTOR_DIR + "/" + string(name) );
ts                295 modules/features2d/test/test_descriptors_regression.cpp         writeMatInBin( descs,  string(ts->get_data_path()) + DESCRIPTOR_DIR + "/" + string(name) );
ts                 86 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, "detect() on empty image must not generate exception (1).\n" );
ts                 87 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                 92 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, "detect() on empty image must return empty keypoints vector (1).\n" );
ts                 93 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                106 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, "detect() on empty image vector must not generate exception (2).\n" );
ts                107 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                135 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, "Bad keypoints count ratio (validCount = %d, calcCount = %d).\n",
ts                137 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                163 modules/features2d/test/test_detectors_regression.cpp     ts->printf( cvtest::TS::LOG, "badPointCount = %d; validPointCount = %d; calcPointCount = %d\n",
ts                167 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, " - Bad accuracy!\n" );
ts                168 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                171 modules/features2d/test/test_detectors_regression.cpp     ts->printf( cvtest::TS::LOG, " - OK\n" );
ts                177 modules/features2d/test/test_detectors_regression.cpp     string imgFilename = string(ts->get_data_path()) + FEATURES2D_DIR + "/" + IMAGE_FILENAME;
ts                178 modules/features2d/test/test_detectors_regression.cpp     string resFilename = string(ts->get_data_path()) + DETECTOR_DIR + "/" + string(name) + ".xml.gz";
ts                184 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, "Image %s can not be read.\n", imgFilename.c_str() );
ts                185 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                204 modules/features2d/test/test_detectors_regression.cpp             ts->printf( cvtest::TS::LOG, "Keypoints can not be read.\n" );
ts                205 modules/features2d/test/test_detectors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                216 modules/features2d/test/test_detectors_regression.cpp             ts->printf( cvtest::TS::LOG, "File %s can not be opened to write.\n", resFilename.c_str() );
ts                217 modules/features2d/test/test_detectors_regression.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                235 modules/features2d/test/test_detectors_regression.cpp         ts->printf( cvtest::TS::LOG, "Feature detector is empty.\n" );
ts                236 modules/features2d/test/test_detectors_regression.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                243 modules/features2d/test/test_detectors_regression.cpp     ts->set_failed_test_info( cvtest::TS::OK );
ts                 63 modules/features2d/test/test_fast.cpp     Mat image1 = imread(string(ts->get_data_path()) + "inpaint/orig.png");
ts                 64 modules/features2d/test/test_fast.cpp     Mat image2 = imread(string(ts->get_data_path()) + "cameracalibration/chess9.png");
ts                 65 modules/features2d/test/test_fast.cpp     string xml = string(ts->get_data_path()) + format("fast/result%d.xml", type);
ts                 69 modules/features2d/test/test_fast.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                103 modules/features2d/test/test_fast.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                112 modules/features2d/test/test_fast.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                125 modules/features2d/test/test_fast.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                134 modules/features2d/test/test_fast.cpp   ts->set_failed_test_info(cvtest::TS::OK);
ts                 66 modules/features2d/test/test_keypoints.cpp         string imgFilename = string(ts->get_data_path()) + FEATURES2D_DIR + "/" + IMAGE_FILENAME;
ts                 72 modules/features2d/test/test_keypoints.cpp             ts->printf(cvtest::TS::LOG, "Image %s can not be read.\n", imgFilename.c_str());
ts                 73 modules/features2d/test/test_keypoints.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                 82 modules/features2d/test/test_keypoints.cpp             ts->printf(cvtest::TS::LOG, "Detector can't find keypoints in image.\n");
ts                 83 modules/features2d/test/test_keypoints.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                 94 modules/features2d/test/test_keypoints.cpp                 ts->printf(cvtest::TS::LOG, "KeyPoint::pt is out of image (x=%f, y=%f).\n", kp.pt.x, kp.pt.y);
ts                 95 modules/features2d/test/test_keypoints.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                101 modules/features2d/test/test_keypoints.cpp                 ts->printf(cvtest::TS::LOG, "KeyPoint::size is not positive (%f).\n", kp.size);
ts                102 modules/features2d/test/test_keypoints.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                108 modules/features2d/test/test_keypoints.cpp                 ts->printf(cvtest::TS::LOG, "KeyPoint::angle is out of range [0, 360). It's %f.\n", kp.angle);
ts                109 modules/features2d/test/test_keypoints.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                113 modules/features2d/test/test_keypoints.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                 95 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "match() on empty descriptors must not generate exception (1).\n" );
ts                 96 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                105 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "knnMatch() on empty descriptors must not generate exception (1).\n" );
ts                106 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                115 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "radiusMatch() on empty descriptors must not generate exception (1).\n" );
ts                116 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                125 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "add() on empty descriptors must not generate exception.\n" );
ts                126 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                135 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "match() on empty descriptors must not generate exception (2).\n" );
ts                136 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                145 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "knnMatch() on empty descriptors must not generate exception (2).\n" );
ts                146 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                155 modules/features2d/test/test_matchers_algorithmic.cpp         ts->printf( cvtest::TS::LOG, "radiusMatch() on empty descriptors must not generate exception (2).\n" );
ts                156 modules/features2d/test/test_matchers_algorithmic.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                204 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test match() function (1).\n");
ts                205 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                218 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->printf( cvtest::TS::LOG, "%f - too large bad matches part while test match() function (1).\n",
ts                220 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                232 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test match() function for the same query and test descriptors (1).\n");
ts                233 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                244 modules/features2d/test/test_matchers_algorithmic.cpp                     ts->printf( cvtest::TS::LOG, "Bad match (i=%d, queryIdx=%d, trainIdx=%d, distance=%f) while test match() function for the same query and test descriptors (1).\n",
ts                246 modules/features2d/test/test_matchers_algorithmic.cpp                     ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                271 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test match() function (2).\n");
ts                272 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                296 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->printf( cvtest::TS::LOG, "%f - too large bad matches part while test match() function (2).\n",
ts                298 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                317 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test knnMatch() function (1).\n");
ts                318 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                341 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->printf( cvtest::TS::LOG, "%f - too large bad matches part while test knnMatch() function (1).\n",
ts                343 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                368 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test knnMatch() function (2).\n");
ts                369 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                405 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->printf( cvtest::TS::LOG, "%f - too large bad matches part while test knnMatch() function (2).\n",
ts                407 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                424 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test radiusMatch() function (1).\n");
ts                425 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                443 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->printf( cvtest::TS::LOG, "%f - too large bad matches part while test radiusMatch() function (1).\n",
ts                445 modules/features2d/test/test_matchers_algorithmic.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                472 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf(cvtest::TS::LOG, "Incorrect matches count while test radiusMatch() function (1).\n");
ts                473 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                510 modules/features2d/test/test_matchers_algorithmic.cpp             ts->printf( cvtest::TS::LOG, "%f - too large bad matches part while test radiusMatch() function (2).\n",
ts                512 modules/features2d/test/test_matchers_algorithmic.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                119 modules/features2d/test/test_nearestneighbors.cpp             ts->printf( cvtest::TS::LOG, "correct_perc = %d\n", correctPerc );
ts                137 modules/features2d/test/test_nearestneighbors.cpp         ts->printf( cvtest::TS::LOG, "bad accuracy of GetPoints \n" );
ts                144 modules/features2d/test/test_nearestneighbors.cpp         ts->printf( cvtest::TS::LOG, "bad accuracy of FindBoxed \n" );
ts                151 modules/features2d/test/test_nearestneighbors.cpp         ts->printf( cvtest::TS::LOG, "bad accuracy of Find \n" );
ts                157 modules/features2d/test/test_nearestneighbors.cpp     ts->set_failed_test_info( code );
ts                305 modules/features2d/test/test_nearestneighbors.cpp     switch ( cvtest::randInt(ts->get_rng()) % 2 )
ts                206 modules/features2d/test/test_rotation_and_scale_invariance.cpp         const string imageFilename = string(ts->get_data_path()) + IMAGE_TSUKUBA;
ts                212 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->printf(cvtest::TS::LOG, "Image %s can not be read.\n", imageFilename.c_str());
ts                213 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                268 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->printf(cvtest::TS::LOG, "Incorrect keyPointMatchesRatio: curr = %f, min = %f.\n",
ts                270 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                279 modules/features2d/test/test_rotation_and_scale_invariance.cpp                     ts->printf(cvtest::TS::LOG, "Incorrect angleInliersRatio: curr = %f, min = %f.\n",
ts                281 modules/features2d/test/test_rotation_and_scale_invariance.cpp                     ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                290 modules/features2d/test/test_rotation_and_scale_invariance.cpp         ts->set_failed_test_info( cvtest::TS::OK );
ts                318 modules/features2d/test/test_rotation_and_scale_invariance.cpp         const string imageFilename = string(ts->get_data_path()) + IMAGE_TSUKUBA;
ts                324 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->printf(cvtest::TS::LOG, "Image %s can not be read.\n", imageFilename.c_str());
ts                325 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                367 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->printf(cvtest::TS::LOG, "Incorrect descInliersRatio: curr = %f, min = %f.\n",
ts                369 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                376 modules/features2d/test/test_rotation_and_scale_invariance.cpp         ts->set_failed_test_info( cvtest::TS::OK );
ts                402 modules/features2d/test/test_rotation_and_scale_invariance.cpp         const string imageFilename = string(ts->get_data_path()) + IMAGE_BIKES;
ts                408 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->printf(cvtest::TS::LOG, "Image %s can not be read.\n", imageFilename.c_str());
ts                409 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                431 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->printf(cvtest::TS::LOG, "Strange behavior of the detector. "
ts                437 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                471 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->printf(cvtest::TS::LOG, "Incorrect keyPointMatchesRatio: curr = %f, min = %f.\n",
ts                473 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                482 modules/features2d/test/test_rotation_and_scale_invariance.cpp                     ts->printf(cvtest::TS::LOG, "Incorrect scaleInliersRatio: curr = %f, min = %f.\n",
ts                484 modules/features2d/test/test_rotation_and_scale_invariance.cpp                     ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                493 modules/features2d/test/test_rotation_and_scale_invariance.cpp         ts->set_failed_test_info( cvtest::TS::OK );
ts                521 modules/features2d/test/test_rotation_and_scale_invariance.cpp         const string imageFilename = string(ts->get_data_path()) + IMAGE_BIKES;
ts                527 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->printf(cvtest::TS::LOG, "Image %s can not be read.\n", imageFilename.c_str());
ts                528 modules/features2d/test/test_rotation_and_scale_invariance.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                571 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->printf(cvtest::TS::LOG, "Incorrect descInliersRatio: curr = %f, min = %f.\n",
ts                573 modules/features2d/test/test_rotation_and_scale_invariance.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                580 modules/features2d/test/test_rotation_and_scale_invariance.cpp         ts->set_failed_test_info( cvtest::TS::OK );
ts                 67 modules/flann/test/test_lshtable_badarg.cpp     RNG &rng = ts->get_rng();
ts                 86 modules/flann/test/test_lshtable_badarg.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                 88 modules/flann/test/test_lshtable_badarg.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                 61 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 0\n");
ts                 64 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 1\n");
ts                 67 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 2\n");
ts                 71 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 3\n");
ts                 74 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 4\n");
ts                 77 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 5\n");
ts                 80 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 6\n");
ts                 83 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 7\n");
ts                 86 modules/highgui/test/test_gui.cpp     ts->printf(ts->LOG, "GUI 8\n");
ts                 88 modules/highgui/test/test_gui.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 64 modules/imgcodecs/test/test_drawing.cpp     string path = ts->get_data_path(), filename;
ts                 83 modules/imgcodecs/test/test_drawing.cpp             ts->printf( ts->LOG, "NORM_L1 between testImg and valImg is equal %f (larger than %f)\n", err, Eps );
ts                 84 modules/imgcodecs/test/test_drawing.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                 88 modules/imgcodecs/test/test_drawing.cpp             ts->set_failed_test_info(checkLineIterator( testImg ));
ts                 91 modules/imgcodecs/test/test_drawing.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                235 modules/imgcodecs/test/test_drawing.cpp             ts->printf( ts->LOG, "LineIterator works incorrect" );
ts                236 modules/imgcodecs/test/test_drawing.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                239 modules/imgcodecs/test/test_drawing.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                404 modules/imgcodecs/test/test_drawing.cpp             ts->printf( ts->LOG, "CvLineIterator works incorrect" );
ts                405 modules/imgcodecs/test/test_drawing.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                409 modules/imgcodecs/test/test_drawing.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                140 modules/imgcodecs/test/test_grfmt.cpp             ts->printf(cvtest::TS::LOG, "start  reading big image\n");
ts                141 modules/imgcodecs/test/test_grfmt.cpp             Mat img = imread(string(ts->get_data_path()) + "readwrite/read.png");
ts                142 modules/imgcodecs/test/test_grfmt.cpp             ts->printf(cvtest::TS::LOG, "finish reading big image\n");
ts                143 modules/imgcodecs/test/test_grfmt.cpp             if (img.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                144 modules/imgcodecs/test/test_grfmt.cpp             ts->printf(cvtest::TS::LOG, "start  writing big image\n");
ts                146 modules/imgcodecs/test/test_grfmt.cpp             ts->printf(cvtest::TS::LOG, "finish writing big image\n");
ts                150 modules/imgcodecs/test/test_grfmt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                152 modules/imgcodecs/test/test_grfmt.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                190 modules/imgcodecs/test/test_grfmt.cpp                         ts->printf(ts->LOG, "image type depth:%d   channels:%d   ext: %s\n", CV_8U, num_channels, ext_from_int(ext).c_str());
ts                195 modules/imgcodecs/test/test_grfmt.cpp                         ts->printf(ts->LOG, "writing      image : %s\n", img_path.c_str());
ts                198 modules/imgcodecs/test/test_grfmt.cpp                         ts->printf(ts->LOG, "reading test image : %s\n", img_path.c_str());
ts                201 modules/imgcodecs/test/test_grfmt.cpp                         if (img_test.empty()) ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                210 modules/imgcodecs/test/test_grfmt.cpp                             ts->printf(ts->LOG, "norm = %f \n", n);
ts                211 modules/imgcodecs/test/test_grfmt.cpp                             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                220 modules/imgcodecs/test/test_grfmt.cpp                     ts->printf(ts->LOG, "image type depth:%d   channels:%d   ext: %s\n", CV_8U, num_channels, ".jpg");
ts                226 modules/imgcodecs/test/test_grfmt.cpp                     ts->printf(ts->LOG, "reading test image : %s\n", filename.c_str());
ts                229 modules/imgcodecs/test/test_grfmt.cpp                     if (img_test.empty()) ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                240 modules/imgcodecs/test/test_grfmt.cpp                         ts->printf(ts->LOG, "norm = %f > expected = %f \n", n, expected);
ts                241 modules/imgcodecs/test/test_grfmt.cpp                         ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                251 modules/imgcodecs/test/test_grfmt.cpp                     ts->printf(ts->LOG, "image type depth:%d   channels:%d   ext: %s\n", CV_16U, num_channels, ".tiff");
ts                257 modules/imgcodecs/test/test_grfmt.cpp                     ts->printf(ts->LOG, "reading test image : %s\n", filename.c_str());
ts                260 modules/imgcodecs/test/test_grfmt.cpp                     if (img_test.empty()) ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                264 modules/imgcodecs/test/test_grfmt.cpp                     ts->printf(ts->LOG, "img      : %d ; %d \n", img.channels(), img.depth());
ts                265 modules/imgcodecs/test/test_grfmt.cpp                     ts->printf(ts->LOG, "img_test : %d ; %d \n", img_test.channels(), img_test.depth());
ts                273 modules/imgcodecs/test/test_grfmt.cpp                         ts->printf(ts->LOG, "norm = %f \n", n);
ts                274 modules/imgcodecs/test/test_grfmt.cpp                         ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                282 modules/imgcodecs/test/test_grfmt.cpp             ts->printf(ts->LOG, "Exception: %s\n" , e.what());
ts                283 modules/imgcodecs/test/test_grfmt.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                295 modules/imgcodecs/test/test_grfmt.cpp             Mat rle = imread(string(ts->get_data_path()) + "readwrite/rle8.bmp");
ts                296 modules/imgcodecs/test/test_grfmt.cpp             Mat bmp = imread(string(ts->get_data_path()) + "readwrite/ordinary.bmp");
ts                298 modules/imgcodecs/test/test_grfmt.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                302 modules/imgcodecs/test/test_grfmt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                304 modules/imgcodecs/test/test_grfmt.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                338 modules/imgcodecs/test/test_grfmt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                340 modules/imgcodecs/test/test_grfmt.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                348 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                353 modules/imgcodecs/test/test_grfmt.cpp     string imgName = string(ts.get_data_path()) + "/../cv/shared/lena.png";
ts                381 modules/imgcodecs/test/test_grfmt.cpp             Mat img = imread(string(ts->get_data_path()) + "readwrite/color_palette_alpha.png",-1);
ts                382 modules/imgcodecs/test/test_grfmt.cpp             if (img.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                401 modules/imgcodecs/test/test_grfmt.cpp             img = imread(string(ts->get_data_path()) + "readwrite/color_palette_no_alpha.png",-1);
ts                402 modules/imgcodecs/test/test_grfmt.cpp             if (img.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                419 modules/imgcodecs/test/test_grfmt.cpp             img = imread(string(ts->get_data_path()) + "readwrite/color_palette_alpha.png",1);
ts                420 modules/imgcodecs/test/test_grfmt.cpp             if (img.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                437 modules/imgcodecs/test/test_grfmt.cpp             img = imread(string(ts->get_data_path()) + "readwrite/color_palette_no_alpha.png",1);
ts                438 modules/imgcodecs/test/test_grfmt.cpp             if (img.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                456 modules/imgcodecs/test/test_grfmt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                458 modules/imgcodecs/test/test_grfmt.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                476 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                477 modules/imgcodecs/test/test_grfmt.cpp     string input = string(ts.get_data_path()) + "../cv/shared/lena.png";
ts                500 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                501 modules/imgcodecs/test/test_grfmt.cpp     string input = string(ts.get_data_path()) + "../cv/shared/lena.png";
ts                524 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                525 modules/imgcodecs/test/test_grfmt.cpp     string input = string(ts.get_data_path()) + "../cv/shared/lena.png";
ts                651 modules/imgcodecs/test/test_grfmt.cpp             cv::Mat img = imread(string(ts->get_data_path()) + "readwrite/non_tiled.tif",-1);
ts                652 modules/imgcodecs/test/test_grfmt.cpp             if (img.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                654 modules/imgcodecs/test/test_grfmt.cpp             cv::Mat tiled8 = imread(string(ts->get_data_path()) + "readwrite/tiled_8.tif", -1);
ts                655 modules/imgcodecs/test/test_grfmt.cpp             if (tiled8.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                658 modules/imgcodecs/test/test_grfmt.cpp             cv::Mat tiled16 = imread(string(ts->get_data_path()) + "readwrite/tiled_16.tif", -1);
ts                659 modules/imgcodecs/test/test_grfmt.cpp             if (tiled16.empty()) ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                667 modules/imgcodecs/test/test_grfmt.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                669 modules/imgcodecs/test/test_grfmt.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                754 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                755 modules/imgcodecs/test/test_grfmt.cpp     string input = string(ts.get_data_path()) + "../cv/shared/lena.png";
ts                803 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                804 modules/imgcodecs/test/test_grfmt.cpp     std::string input = std::string(ts.get_data_path()) + "../cv/shared/lena.png";
ts                827 modules/imgcodecs/test/test_grfmt.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                828 modules/imgcodecs/test/test_grfmt.cpp     std::string input = std::string(ts.get_data_path()) + "../cv/shared/lena.png";
ts                 64 modules/imgproc/src/gcgraph.hpp         int ts;
ts                168 modules/imgproc/src/gcgraph.hpp         v->ts = 0;
ts                207 modules/imgproc/src/gcgraph.hpp                         u->ts = v->ts;
ts                223 modules/imgproc/src/gcgraph.hpp                     if( u->dist > v->dist+1 && u->ts <= v->ts )
ts                227 modules/imgproc/src/gcgraph.hpp                         u->ts = v->ts;
ts                310 modules/imgproc/src/gcgraph.hpp                     if( u->ts == curr_ts )
ts                323 modules/imgproc/src/gcgraph.hpp                             u->ts = curr_ts;
ts                339 modules/imgproc/src/gcgraph.hpp                     for( u = vtxPtr+edgePtr[ei].dst; u->ts != curr_ts; u = vtxPtr+edgePtr[u->parent].dst )
ts                341 modules/imgproc/src/gcgraph.hpp                         u->ts = curr_ts;
ts                349 modules/imgproc/src/gcgraph.hpp                 v2->ts = curr_ts;
ts                355 modules/imgproc/src/gcgraph.hpp             v2->ts = 0;
ts                126 modules/imgproc/test/test_approxpoly.cpp     RNG& rng = ts->get_rng();
ts                300 modules/imgproc/test/test_approxpoly.cpp         ts->update_context( this, i, false );
ts                329 modules/imgproc/test/test_approxpoly.cpp                 ts->printf( cvtest::TS::LOG,
ts                338 modules/imgproc/test/test_approxpoly.cpp                 ts->printf( cvtest::TS::LOG,
ts                355 modules/imgproc/test/test_approxpoly.cpp         ts->set_failed_test_info( code );
ts                237 modules/imgproc/test/test_bilateral_filter.cpp         RNG& rng = ts->get_rng();
ts                270 modules/imgproc/test/test_bilateral_filter.cpp             ts->printf(cvtest::TS::CONSOLE, "actual error: %g, expected: %g", e, eps);
ts                271 modules/imgproc/test/test_bilateral_filter.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                274 modules/imgproc/test/test_bilateral_filter.cpp             ts->set_failed_test_info(cvtest::TS::OK);
ts                103 modules/imgproc/test/test_boundingrect.cpp         RNG& rng = ts->get_rng();
ts                 85 modules/imgproc/test/test_canny.cpp     RNG& rng = ts->get_rng();
ts                269 modules/imgproc/test/test_canny.cpp         ts->printf( cvtest::TS::LOG, "Some of the pixels, produced by Canny, are not 0's or 255's; the difference is %g\n", err );
ts                270 modules/imgproc/test/test_canny.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                278 modules/imgproc/test/test_canny.cpp         ts->printf( cvtest::TS::LOG, "Too high percentage of non-matching edge pixels = %g%%\n", err);
ts                279 modules/imgproc/test/test_canny.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                122 modules/imgproc/test/test_color.cpp     RNG& rng = ts->get_rng();
ts                607 modules/imgproc/test/test_color.cpp     RNG& rng = ts->get_rng();
ts               1288 modules/imgproc/test/test_color.cpp     RNG& rng = ts->get_rng();
ts               1559 modules/imgproc/test/test_color.cpp     RNG& rng = ts->get_rng();
ts               1690 modules/imgproc/test/test_color.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               1692 modules/imgproc/test/test_color.cpp     Mat given = imread(string(ts->get_data_path()) + "/cvtcolor/bayer_input.png", IMREAD_GRAYSCALE);
ts               1693 modules/imgproc/test/test_color.cpp     Mat gold = imread(string(ts->get_data_path()) + "/cvtcolor/bayer_gold.png", IMREAD_UNCHANGED);
ts               1712 modules/imgproc/test/test_color.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               1714 modules/imgproc/test/test_color.cpp     Mat given = imread(string(ts->get_data_path()) + "/cvtcolor/bayer_input.png", IMREAD_GRAYSCALE);
ts               1715 modules/imgproc/test/test_color.cpp     string goldfname = string(ts->get_data_path()) + "/cvtcolor/bayerVNG_gold.png";
ts               1802 modules/imgproc/test/test_color.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               1805 modules/imgproc/test/test_color.cpp     const std::string parent_path = string(ts->get_data_path()) + "/cvtcolor_strict/";
ts               1813 modules/imgproc/test/test_color.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISSING_TEST_DATA);
ts               1814 modules/imgproc/test/test_color.cpp         ts->printf(cvtest::TS::SUMMARY, "No input image\n");
ts               1815 modules/imgproc/test/test_color.cpp         ts->set_gtest_status();
ts               1840 modules/imgproc/test/test_color.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts               1841 modules/imgproc/test/test_color.cpp             ts->printf(cvtest::TS::SUMMARY, "\nReference channels: %d\n"
ts               1843 modules/imgproc/test/test_color.cpp             ts->printf(cvtest::TS::SUMMARY, "\nReference depth: %d\n"
ts               1845 modules/imgproc/test/test_color.cpp             ts->printf(cvtest::TS::SUMMARY, "\nReference rows: %d\n"
ts               1847 modules/imgproc/test/test_color.cpp             ts->printf(cvtest::TS::SUMMARY, "\nReference cols: %d\n"
ts               1849 modules/imgproc/test/test_color.cpp             ts->set_gtest_status();
ts               1860 modules/imgproc/test/test_color.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               1861 modules/imgproc/test/test_color.cpp             ts->printf(cvtest::TS::SUMMARY, "\nCount non zero in absdiff: %d\n", nonZero);
ts               1862 modules/imgproc/test/test_color.cpp             ts->set_gtest_status();
ts               1895 modules/imgproc/test/test_color.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               1910 modules/imgproc/test/test_color.cpp                 ts->printf(cvtest::TS::SUMMARY, "Error in: (%d, %d)\n", x / cn,  y);
ts               1911 modules/imgproc/test/test_color.cpp                 ts->printf(cvtest::TS::SUMMARY, "Reference value: %f\n", rD[x]);
ts               1912 modules/imgproc/test/test_color.cpp                 ts->printf(cvtest::TS::SUMMARY, "Actual value: %f\n", D[x]);
ts               1914 modules/imgproc/test/test_color.cpp                     ts->printf(cvtest::TS::SUMMARY, "Src value: %f\n", src.ptr<float>(y)[x]);
ts               1915 modules/imgproc/test/test_color.cpp                 ts->printf(cvtest::TS::SUMMARY, "Size: (%d, %d)\n", reference.rows, reference.cols);
ts               1925 modules/imgproc/test/test_color.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               1926 modules/imgproc/test/test_color.cpp                 ts->set_gtest_status();
ts               2048 modules/imgproc/test/test_color.cpp static void checkData(const Mat& actual, const Mat& reference, cvtest::TS* ts, const char* type,
ts               2068 modules/imgproc/test/test_color.cpp                 ts->printf(SUM, "\nReference value: %d\n", static_cast<int>(R[x]));
ts               2069 modules/imgproc/test/test_color.cpp                 ts->printf(SUM, "Actual value: %d\n", static_cast<int>(A[x]));
ts               2070 modules/imgproc/test/test_color.cpp                 ts->printf(SUM, "(y, x): (%d, %d)\n", y, x / reference.channels());
ts               2071 modules/imgproc/test/test_color.cpp                 ts->printf(SUM, "Channel pos: %d\n", x % reference.channels());
ts               2072 modules/imgproc/test/test_color.cpp                 ts->printf(SUM, "Pattern: %s\n", type);
ts               2073 modules/imgproc/test/test_color.cpp                 ts->printf(SUM, "Bayer image type: %s", bayer_type);
ts               2080 modules/imgproc/test/test_color.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               2081 modules/imgproc/test/test_color.cpp                 ts->set_gtest_status();
ts               2090 modules/imgproc/test/test_color.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               2092 modules/imgproc/test/test_color.cpp     const std::string parent_path = string(ts->get_data_path()) + "/cvtcolor_strict/";
ts               2100 modules/imgproc/test/test_color.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISSING_TEST_DATA);
ts               2101 modules/imgproc/test/test_color.cpp         ts->printf(cvtest::TS::SUMMARY, "No input image\n");
ts               2102 modules/imgproc/test/test_color.cpp         ts->set_gtest_status();
ts               2132 modules/imgproc/test/test_color.cpp                 checkData<unsigned char>(actual, reference, ts, types[i], next, "CV_8U");
ts               2137 modules/imgproc/test/test_color.cpp                 checkData<unsigned short int>(actual, tmp, ts, types[i], next, "CV_16U");
ts               2145 modules/imgproc/test/test_color.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               2146 modules/imgproc/test/test_color.cpp     Mat raw = imread(string(ts->get_data_path()) + "/cvtcolor/bayer_input.png", IMREAD_GRAYSCALE);
ts               2177 modules/imgproc/test/test_color.cpp                     ts->printf(cvtest::TS::SUMMARY, "Error in: (%d, %d)\n", x / cn,  y);
ts               2178 modules/imgproc/test/test_color.cpp                     ts->printf(cvtest::TS::SUMMARY, "Reference value: %d\n", rD[x]);
ts               2179 modules/imgproc/test/test_color.cpp                     ts->printf(cvtest::TS::SUMMARY, "Actual value: %d\n", D[x]);
ts               2180 modules/imgproc/test/test_color.cpp                     ts->printf(cvtest::TS::SUMMARY, "Src value: %d\n", raw.ptr<uchar>(y)[x]);
ts               2181 modules/imgproc/test/test_color.cpp                     ts->printf(cvtest::TS::SUMMARY, "Size: (%d, %d)\n", reference.rows, reference.cols);
ts               2187 modules/imgproc/test/test_color.cpp                     ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               2188 modules/imgproc/test/test_color.cpp                     ts->set_gtest_status();
ts                 63 modules/imgproc/test/test_connectedcomponents.cpp     string exp_path = string(ts->get_data_path()) + "connectedcomponents/ccomp_exp.png";
ts                 65 modules/imgproc/test/test_connectedcomponents.cpp     Mat orig = imread(string(ts->get_data_path()) + "connectedcomponents/concentric_circles.png", 0);
ts                 69 modules/imgproc/test/test_connectedcomponents.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                 82 modules/imgproc/test/test_connectedcomponents.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_OUTPUT );
ts                 96 modules/imgproc/test/test_connectedcomponents.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_MISMATCH );
ts                101 modules/imgproc/test/test_connectedcomponents.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_MISMATCH );
ts                104 modules/imgproc/test/test_connectedcomponents.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                207 modules/imgproc/test/test_contours.cpp     RNG& rng = ts->get_rng();
ts                276 modules/imgproc/test/test_contours.cpp         ts->printf( cvtest::TS::LOG, "The number of contours retrieved with different "
ts                289 modules/imgproc/test/test_contours.cpp         code = cvtest::cmpEps2(ts, _img[0], _img[3], 0, true, "Comparing original image with the map of filled contours" );
ts                294 modules/imgproc/test/test_contours.cpp         code = cvtest::cmpEps2( ts, _img[1], _img[2], 0, true,
ts                317 modules/imgproc/test/test_contours.cpp                 ts->printf( cvtest::TS::LOG,
ts                338 modules/imgproc/test/test_contours.cpp                 ts->printf( cvtest::TS::LOG,
ts                350 modules/imgproc/test/test_contours.cpp                 ts->printf( cvtest::TS::LOG,
ts                367 modules/imgproc/test/test_contours.cpp                     ts->printf( cvtest::TS::LOG,
ts                385 modules/imgproc/test/test_contours.cpp         ts->set_failed_test_info( code );
ts                275 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts                340 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts                468 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts                601 modules/imgproc/test/test_convhull.cpp                 ts->printf( cvtest::TS::LOG, "Invalid convex hull point #%d\n", i );
ts                622 modules/imgproc/test/test_convhull.cpp                 ts->printf( cvtest::TS::LOG, "The convex hull is not convex or has a wrong orientation (vtx %d)\n", i );
ts                639 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG, "The point #%d is outside of the convex hull\n", i );
ts                650 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "Not every convex hull vertex coincides with some input point\n" );
ts                660 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts                726 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG, "The bounding box is not a rectangle\n" );
ts                759 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG, "The point #%d is outside of the box\n", i );
ts                777 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "Not every box side has a point nearby\n" );
ts                785 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts                904 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts                910 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts                916 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts                923 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts                996 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG, "The point #%d is outside of the circle\n", i );
ts               1007 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG,
ts               1016 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts               1048 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts               1114 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "cvArcLength() returned invalid value (%g)\n", result );
ts               1119 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "The function returned %g, while the correct result is %g\n", result, result0 );
ts               1124 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts               1159 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts               1253 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "Some of the computed ellipse parameters are invalid (x=%g,y=%g,w=%g,h=%g,angle=%g)\n",
ts               1270 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "The computed ellipse center and/or size are incorrect:\n\t"
ts               1284 modules/imgproc/test/test_convhull.cpp         ts->printf( cvtest::TS::LOG, "Incorrect ellipse angle (=%1.f, should be %1.f)\n",
ts               1320 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts               1377 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts               1449 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts               1524 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts               1561 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG, "Some of the computed line parameters are invalid (line[%d]=%g)\n",
ts               1588 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts               1592 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts               1609 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts               1613 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts               1624 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts               1731 modules/imgproc/test/test_convhull.cpp     RNG& rng = ts->get_rng();
ts               1807 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts               1815 modules/imgproc/test/test_convhull.cpp             ts->printf( cvtest::TS::LOG,
ts               1831 modules/imgproc/test/test_convhull.cpp         ts->set_failed_test_info( code );
ts               1863 modules/imgproc/test/test_convhull.cpp         ts->update_context( this, i, true );
ts               1910 modules/imgproc/test/test_convhull.cpp             ts->printf(cvtest::TS::LOG,
ts               1912 modules/imgproc/test/test_convhull.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts               1916 modules/imgproc/test/test_convhull.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 83 modules/imgproc/test/test_distancetransform.cpp     RNG& rng = ts->get_rng();
ts                135 modules/imgproc/test/test_distancetransform.cpp         RNG& rng = ts->get_rng();
ts                 84 modules/imgproc/test/test_emd.cpp         ts->printf( cvtest::TS::LOG,
ts                 90 modules/imgproc/test/test_emd.cpp         ts->set_failed_test_info( code );
ts                102 modules/imgproc/test/test_filter.cpp                 RNG& rng = ts->get_rng();
ts                131 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                196 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                406 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                459 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                500 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                639 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                684 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts                757 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts               1060 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts               1267 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts               1606 modules/imgproc/test/test_filter.cpp     RNG& rng = ts->get_rng();
ts               1696 modules/imgproc/test/test_filter.cpp             double t = x > 0 ? data[x-1] : 0, ts = t;
ts               1708 modules/imgproc/test/test_filter.cpp                 ts += tdata[-tstep+1];
ts               1711 modules/imgproc/test/test_filter.cpp                 ts += tdata[x-tstep-1];
ts               1714 modules/imgproc/test/test_filter.cpp                     ts += data[x-step-1];
ts               1716 modules/imgproc/test/test_filter.cpp                         ts += tdata[x-tstep+1] - tdata[x-tstep*2];
ts               1720 modules/imgproc/test/test_filter.cpp             tdata[x] = ts;
ts               1870 modules/imgproc/test/test_filter.cpp             ts->printf(cvtest::TS::LOG, "Combination of depths %d => %d in %s is not supported (yet it should be)",
ts               1883 modules/imgproc/test/test_filter.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                 94 modules/imgproc/test/test_floodfill.cpp     RNG& rng = ts->get_rng();
ts                155 modules/imgproc/test/test_floodfill.cpp     RNG& rng = ts->get_rng();
ts                 71 modules/imgproc/test/test_grabcut.cpp     ts->printf( cvtest::TS::LOG, "nonIntersectArea/expArea = %f\n", curRatio );
ts                 79 modules/imgproc/test/test_grabcut.cpp     Mat img = imread(string(ts->get_data_path()) + "shared/airplane.png");
ts                 80 modules/imgproc/test/test_grabcut.cpp     Mat mask_prob = imread(string(ts->get_data_path()) + "grabcut/mask_prob.png", 0);
ts                 81 modules/imgproc/test/test_grabcut.cpp     Mat exp_mask1 = imread(string(ts->get_data_path()) + "grabcut/exp_mask1.png", 0);
ts                 82 modules/imgproc/test/test_grabcut.cpp     Mat exp_mask2 = imread(string(ts->get_data_path()) + "grabcut/exp_mask2.png", 0);
ts                 88 modules/imgproc/test/test_grabcut.cpp          ts->set_failed_test_info(cvtest::TS::FAIL_MISSING_TEST_DATA);
ts                105 modules/imgproc/test/test_grabcut.cpp         imwrite(string(ts->get_data_path()) + "grabcut/mask_prob.png", mask_prob);
ts                110 modules/imgproc/test/test_grabcut.cpp         imwrite(string(ts->get_data_path()) + "grabcut/exp_mask1.png", exp_mask1);
ts                115 modules/imgproc/test/test_grabcut.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                129 modules/imgproc/test/test_grabcut.cpp         imwrite(string(ts->get_data_path()) + "grabcut/exp_mask2.png", exp_mask2);
ts                134 modules/imgproc/test/test_grabcut.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                137 modules/imgproc/test/test_grabcut.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                144 modules/imgproc/test/test_grabcut.cpp     cvtest::TS& ts = *cvtest::TS::ptr();
ts                146 modules/imgproc/test/test_grabcut.cpp     Mat image_1 = imread(string(ts.get_data_path()) + "grabcut/image1652.ppm", IMREAD_COLOR);
ts                147 modules/imgproc/test/test_grabcut.cpp     Mat mask_1 = imread(string(ts.get_data_path()) + "grabcut/mask1652.ppm", IMREAD_GRAYSCALE);
ts                140 modules/imgproc/test/test_histograms.cpp     RNG& rng = ts->get_rng();
ts                248 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts                295 modules/imgproc/test/test_histograms.cpp     test_cpp = (cvtest::randInt(ts->get_rng()) % 2) != 0;
ts                373 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts                549 modules/imgproc/test/test_histograms.cpp             ts->printf( cvtest::TS::LOG, "The bin #%d has invalid value\n", i );
ts                554 modules/imgproc/test/test_histograms.cpp             ts->printf( cvtest::TS::LOG, "The bin #%d = %g, while it should be %g\n", i, v, v0 );
ts                560 modules/imgproc/test/test_histograms.cpp             ts->printf( cvtest::TS::LOG, "The bin index = (" );
ts                562 modules/imgproc/test/test_histograms.cpp                 ts->printf( cvtest::TS::LOG, "%d%s", indices->data.i[i*cdims + j],
ts                569 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts                603 modules/imgproc/test/test_histograms.cpp     RNG& rng = ts->get_rng();
ts                652 modules/imgproc/test/test_histograms.cpp         ts->printf( cvtest::TS::LOG,
ts                659 modules/imgproc/test/test_histograms.cpp         ts->printf( cvtest::TS::LOG,
ts                671 modules/imgproc/test/test_histograms.cpp                 ts->printf( cvtest::TS::LOG,
ts                681 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts                716 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts                770 modules/imgproc/test/test_histograms.cpp         ts->printf( cvtest::TS::LOG,
ts                776 modules/imgproc/test/test_histograms.cpp         ts->printf( cvtest::TS::LOG,
ts                782 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts                838 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts                917 modules/imgproc/test/test_histograms.cpp                 ts->printf( cvtest::TS::LOG, "The %d-th bin is invalid (=%g)\n", i, v );
ts                923 modules/imgproc/test/test_histograms.cpp                 ts->printf( cvtest::TS::LOG, "The %d-th bin is incorrect (=%g, should be =%g)\n", i, v, v0 );
ts                934 modules/imgproc/test/test_histograms.cpp             ts->printf( cvtest::TS::LOG,
ts                941 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts               1098 modules/imgproc/test/test_histograms.cpp             ts->printf( cvtest::TS::LOG, "The comparison result using the method #%d (%s) is invalid (=%g)\n",
ts               1105 modules/imgproc/test/test_histograms.cpp             ts->printf( cvtest::TS::LOG, "The comparison result using the method #%d (%s)\n\tis inaccurate (=%g, should be =%g)\n",
ts               1113 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts               1176 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts               1314 modules/imgproc/test/test_histograms.cpp         ts->printf( cvtest::TS::LOG, "The histogram does not match to the reference one\n" );
ts               1320 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts               1387 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts               1539 modules/imgproc/test/test_histograms.cpp     code = cvtest::cmpEps2( ts, a, b, threshold, true, "Back project image" );
ts               1542 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts               1611 modules/imgproc/test/test_histograms.cpp         RNG& rng = ts->get_rng();
ts               1733 modules/imgproc/test/test_histograms.cpp     code = cvtest::cmpEps2( ts, a, b, err_level, true, "BackProjectPatch result" );
ts               1736 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts               1783 modules/imgproc/test/test_histograms.cpp     RNG& rng = ts->get_rng();
ts               1824 modules/imgproc/test/test_histograms.cpp                 ts->printf( cvtest::TS::LOG,
ts               1832 modules/imgproc/test/test_histograms.cpp                 ts->printf( cvtest::TS::LOG,
ts               1844 modules/imgproc/test/test_histograms.cpp         ts->set_failed_test_info( code );
ts                 57 modules/imgproc/test/test_imgproc_umat.cpp         string imgpath = string(ts->get_data_path()) + "shared/lena.png";
ts                 78 modules/imgproc/test/test_imgproc_umat.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                101 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                224 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                508 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                619 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                753 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                834 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                886 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts               1000 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts               1045 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts               1165 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts               1274 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts               1319 modules/imgproc/test/test_imgwarp.cpp     RNG& rng = ts->get_rng();
ts                105 modules/imgproc/test/test_imgwarp_strict.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                148 modules/imgproc/test/test_imgwarp_strict.cpp     RNG& rng = ts->get_rng();
ts                227 modules/imgproc/test/test_imgwarp_strict.cpp         if (ts->get_err_code() < 0)
ts                230 modules/imgproc/test/test_imgwarp_strict.cpp         if (ts->get_err_code() < 0)
ts                232 modules/imgproc/test/test_imgwarp_strict.cpp         ts->update_context(this, i, true);
ts                234 modules/imgproc/test/test_imgwarp_strict.cpp     ts->set_gtest_status();
ts                312 modules/imgproc/test/test_imgwarp_strict.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                669 modules/imgproc/test/test_imgwarp_strict.cpp     RNG& rng = ts->get_rng();
ts               1013 modules/imgproc/test/test_imgwarp_strict.cpp     RNG& rng = ts->get_rng();
ts               1140 modules/imgproc/test/test_imgwarp_strict.cpp     RNG& rng = ts->get_rng();
ts                111 modules/imgproc/test/test_moments.cpp     RNG& rng = ts->get_rng();
ts                460 modules/imgproc/test/test_moments.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_MISMATCH);
ts                 64 modules/imgproc/test/test_pc.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 83 modules/imgproc/test/test_pc.cpp          ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                107 modules/imgproc/test/test_templmatch.cpp     RNG& rng = ts->get_rng();
ts                 77 modules/imgproc/test/test_thresh.cpp     RNG& rng = ts->get_rng();
ts                 63 modules/imgproc/test/test_watershed.cpp     string exp_path = string(ts->get_data_path()) + "watershed/wshed_exp.png";
ts                 65 modules/imgproc/test/test_watershed.cpp     Mat orig = imread(string(ts->get_data_path()) + "inpaint/orig.png");
ts                 66 modules/imgproc/test/test_watershed.cpp     FileStorage fs(string(ts->get_data_path()) + "watershed/comp.xml", FileStorage::READ);
ts                 70 modules/imgproc/test/test_watershed.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                126 modules/imgproc/test/test_watershed.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_MISMATCH );
ts                129 modules/imgproc/test/test_watershed.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                247 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad output labels if flag==KMEANS_PP_CENTERS.\n" );
ts                252 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad accuracy (%f) if flag==KMEANS_PP_CENTERS.\n", err );
ts                260 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad output labels if flag==KMEANS_RANDOM_CENTERS.\n" );
ts                265 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad accuracy (%f) if flag==KMEANS_RANDOM_CENTERS.\n", err );
ts                277 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad output labels if flag==KMEANS_USE_INITIAL_LABELS.\n" );
ts                282 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad accuracy (%f) if flag==KMEANS_USE_INITIAL_LABELS.\n", err );
ts                286 modules/ml/test/test_emknearestkmeans.cpp     ts->set_failed_test_info( code );
ts                323 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad output labels.\n" );
ts                328 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad accuracy (%f) on test data.\n", err );
ts                339 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad output labels.\n" );
ts                344 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Bad accuracy (%f) on test data.\n", err );
ts                348 modules/ml/test/test_emknearestkmeans.cpp     ts->set_failed_test_info( code );
ts                414 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Case index %i : Bad output labels.\n", caseIndex );
ts                419 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Case index %i : Bad accuracy (%f) on train data.\n", caseIndex, err );
ts                433 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Case index %i : Bad output labels.\n", caseIndex );
ts                438 modules/ml/test/test_emknearestkmeans.cpp         ts->printf( cvtest::TS::LOG, "Case index %i : Bad accuracy (%f) on test data.\n", caseIndex, err );
ts                530 modules/ml/test/test_emknearestkmeans.cpp     ts->set_failed_test_info( code );
ts                569 modules/ml/test/test_emknearestkmeans.cpp                 ts->printf( cvtest::TS::LOG, "Crash in write method.\n" );
ts                570 modules/ml/test/test_emknearestkmeans.cpp                 ts->set_failed_test_info( cvtest::TS::FAIL_EXCEPTION );
ts                583 modules/ml/test/test_emknearestkmeans.cpp             ts->printf( cvtest::TS::LOG, "Crash in read method.\n" );
ts                584 modules/ml/test/test_emknearestkmeans.cpp             ts->set_failed_test_info( cvtest::TS::FAIL_EXCEPTION );
ts                595 modules/ml/test/test_emknearestkmeans.cpp             ts->printf( cvtest::TS::LOG, "Different prediction results before writeing and after reading (errCaseCount=%d).\n", errCaseCount );
ts                599 modules/ml/test/test_emknearestkmeans.cpp         ts->set_failed_test_info( code );
ts                614 modules/ml/test/test_emknearestkmeans.cpp         string dataFilename = string(ts->get_data_path()) + "spambase.data";
ts                619 modules/ml/test/test_emknearestkmeans.cpp             ts->printf(cvtest::TS::LOG, "File with spambase dataset cann't be read.\n");
ts                620 modules/ml/test/test_emknearestkmeans.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                687 modules/ml/test/test_emknearestkmeans.cpp             ts->printf(cvtest::TS::LOG, "Too large train classification error (calc = %f, valid=%f).\n", trainError, maxTrainError);
ts                692 modules/ml/test/test_emknearestkmeans.cpp             ts->printf(cvtest::TS::LOG, "Too large test classification error (calc = %f, valid=%f).\n", testError, maxTestError);
ts                696 modules/ml/test/test_emknearestkmeans.cpp         ts->set_failed_test_info(code);
ts                 96 modules/ml/test/test_gbttest.cpp             ts->printf( cvtest::TS::LOG, "Bad test_num value in CV_GBTreesTest::TestTrainPredict(..) function." );
ts                109 modules/ml/test/test_gbttest.cpp             ts->printf( cvtest::TS::LOG, "File reading error." );
ts                142 modules/ml/test/test_gbttest.cpp         ts->printf( cvtest::TS::LOG, "Model training was failed.");
ts                167 modules/ml/test/test_gbttest.cpp         ts->printf( cvtest::TS::LOG, "Test error is out of range:\n"
ts                213 modules/ml/test/test_gbttest.cpp             ts->printf( cvtest::TS::LOG, "first and second saved files differ in %n-line; first %n line: %s; second %n-line: %s",
ts                220 modules/ml/test/test_gbttest.cpp         ts->printf( cvtest::TS::LOG, "First and second saved files differ in %n-line; first %n line: %s; second %n-line: %s",
ts                237 modules/ml/test/test_gbttest.cpp             ts->printf( cvtest::TS::LOG, "Responses predicted before saving and after loading are different" );
ts                249 modules/ml/test/test_gbttest.cpp     string dataPath = string(ts->get_data_path());
ts                281 modules/ml/test/test_gbttest.cpp     ts->set_failed_test_info( code );
ts                 95 modules/ml/test/test_lr.cpp     string dataFileName = ts->get_data_path() + "iris.data";
ts                116 modules/ml/test/test_lr.cpp         ts->printf(cvtest::TS::LOG, "Bad prediction labels\n" );
ts                121 modules/ml/test/test_lr.cpp         ts->printf(cvtest::TS::LOG, "Bad accuracy of (%f)\n", error);
ts                133 modules/ml/test/test_lr.cpp     ts->set_failed_test_info(test_code);
ts                151 modules/ml/test/test_lr.cpp     string dataFileName = ts->get_data_path() + "iris.data";
ts                175 modules/ml/test/test_lr.cpp         ts->printf(cvtest::TS::LOG, "Crash in write method.\n" );
ts                176 modules/ml/test/test_lr.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                188 modules/ml/test/test_lr.cpp         ts->printf(cvtest::TS::LOG, "Crash in write method.\n" );
ts                189 modules/ml/test/test_lr.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
ts                210 modules/ml/test/test_lr.cpp         ts->printf( cvtest::TS::LOG, "Different prediction results before writing and after reading (errorCount=%d).\n", errorCount );
ts                216 modules/ml/test/test_lr.cpp     ts->set_failed_test_info( code );
ts                107 modules/ml/test/test_mltests.cpp         ts->printf( cvtest::TS::LOG, "Test case = %d; test error = %f; mean error = %f (diff=%f), %d*sigma = %f\n",
ts                111 modules/ml/test/test_mltests.cpp             ts->printf( cvtest::TS::LOG, "abs(%f - %f) > %f - OUT OF RANGE!\n", curErr, mean, coeff*sigma, coeff );
ts                115 modules/ml/test/test_mltests.cpp             ts->printf( cvtest::TS::LOG, ".\n" );
ts                120 modules/ml/test/test_mltests.cpp         ts->printf( cvtest::TS::LOG, "validation info is not suitable" );
ts                249 modules/ml/test/test_mltests2.cpp     string filename = ts->get_data_path();
ts                265 modules/ml/test/test_mltests2.cpp         ts->printf( cvtest::TS::LOG, "validation file is not determined or not correct" );
ts                268 modules/ml/test/test_mltests2.cpp     ts->set_failed_test_info( code );
ts                275 modules/ml/test/test_mltests2.cpp     string dataPath = ts->get_data_path();
ts                278 modules/ml/test/test_mltests2.cpp         ts->printf( cvtest::TS::LOG, "data path is empty" );
ts                300 modules/ml/test/test_mltests2.cpp         ts->printf( cvtest::TS::LOG, "file %s can not be read\n", filename.c_str() );
ts                444 modules/ml/test/test_mltests2.cpp         ts->printf( cvtest::TS::LOG, "in test case %d model training was failed", testCaseIdx );
ts                 75 modules/ml/test/test_save_load.cpp             ts->printf( cvtest::TS::LOG, "model can not be trained" );
ts                110 modules/ml/test/test_save_load.cpp                 ts->printf( cvtest::TS::LOG,
ts                142 modules/ml/test/test_save_load.cpp                 ts->printf( cvtest::TS::LOG, "in test case %d responses predicted before saving and after loading is different", testCaseIdx );
ts                189 modules/ml/test/test_save_load.cpp         string filename = ts->get_data_path() + "legacy/" + modelName + suffix;
ts                211 modules/ml/test/test_save_load.cpp             ts->get_rng().fill(input, RNG::UNIFORM, 0, 40);
ts                220 modules/ml/test/test_save_load.cpp         ts->set_failed_test_info(code);
ts                244 modules/ml/test/test_save_load.cpp                     int randomChosenIndex = offset + ((uint)ts->get_rng()) % size;
ts                 85 modules/ml/test/test_svmtrainauto.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                135 modules/objdetect/test/test_cascadeandhog.cpp         string dataPath = ts->get_data_path();
ts                153 modules/objdetect/test/test_cascadeandhog.cpp     string dataPath = ts->get_data_path();
ts                171 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_failed_test_info( code );
ts                249 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf( cvtest::TS::LOG, "validation file is not determined or not correct" );
ts                252 modules/objdetect/test/test_cascadeandhog.cpp     ts->set_failed_test_info( code );
ts                257 modules/objdetect/test/test_cascadeandhog.cpp     string dataPath = ts->get_data_path(), detectorFilename;
ts                270 modules/objdetect/test/test_cascadeandhog.cpp             ts->printf( cvtest::TS::LOG, msg );
ts                435 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf( cvtest::TS::LOG, "cascade %s can not be opened");
ts                458 modules/objdetect/test/test_cascadeandhog.cpp     string dataPath = ts->get_data_path(), filename;
ts                470 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf( cvtest::TS::LOG, "cascade %s can not be opened");
ts                556 modules/objdetect/test/test_cascadeandhog.cpp     cvtest::TS* ts;
ts                562 modules/objdetect/test/test_cascadeandhog.cpp         ts(cvtest::TS::ptr()), failed(false)
ts               1082 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf(cvtest::TS::SUMMARY, "Found locations are not equal (see detect function)\n");
ts               1083 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               1084 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_gtest_status();
ts               1093 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf(cvtest::TS::SUMMARY, "Weights for found locations aren't equal.\n"
ts               1095 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf(cvtest::TS::LOG, "Channels: %d\n", img.channels());
ts               1097 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               1098 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_gtest_status();
ts               1175 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf(cvtest::TS::SUMMARY, "Norm of the difference: %lf\n", diff_norm);
ts               1176 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf(cvtest::TS::SUMMARY, "Found descriptors are not equal (see compute function)\n");
ts               1177 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               1178 modules/objdetect/test/test_cascadeandhog.cpp         ts->printf(cvtest::TS::LOG, "Channels: %d\n", img.channels());
ts               1179 modules/objdetect/test/test_cascadeandhog.cpp         ts->set_gtest_status();
ts               1324 modules/objdetect/test/test_cascadeandhog.cpp            ts->printf(cvtest::TS::LOG, "%s matrices are not equal\n"
ts               1326 modules/objdetect/test/test_cascadeandhog.cpp            ts->printf(cvtest::TS::LOG, "Channels: %d\n", img.channels());
ts               1327 modules/objdetect/test/test_cascadeandhog.cpp            ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts               1328 modules/objdetect/test/test_cascadeandhog.cpp            ts->set_gtest_status();
ts               1337 modules/objdetect/test/test_cascadeandhog.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts               1338 modules/objdetect/test/test_cascadeandhog.cpp     RNG& rng = ts->get_rng();
ts                 65 modules/photo/test/test_inpaint.cpp     string folder = string(ts->get_data_path()) + "inpaint/";
ts                 73 modules/photo/test/test_inpaint.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_INVALID_TEST_DATA );
ts                 99 modules/photo/test/test_inpaint.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_MISMATCH );
ts                112 modules/photo/test/test_inpaint.cpp         ts->set_failed_test_info( cvtest::TS::FAIL_BAD_ACCURACY );
ts                116 modules/photo/test/test_inpaint.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                185 modules/shape/test/test_shape.cpp             ts->set_failed_test_info(cvtest::TS::OK);
ts                187 modules/shape/test/test_shape.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                147 modules/ts/include/opencv2/ts.hpp CV_EXPORTS int cmpEps2( TS* ts, const Mat& data, const Mat& refdata, double success_err_level,
ts                150 modules/ts/include/opencv2/ts.hpp CV_EXPORTS int cmpEps2_64f( TS* ts, const double* val, const double* refval, int len,
ts                245 modules/ts/include/opencv2/ts.hpp     TS* ts;
ts                502 modules/ts/include/opencv2/ts.hpp                 ts->printf(TS::LOG, "%s (test case #%d): the error code %d is different from the expected %d\n",
ts                510 modules/ts/include/opencv2/ts.hpp             ts->printf(TS::LOG, "%s  (test case #%d): unknown exception was thrown (the function has likely crashed)\n",
ts                516 modules/ts/include/opencv2/ts.hpp             ts->printf(TS::LOG, "%s  (test case #%d): no expected exception was thrown\n",
ts                169 modules/ts/src/ts.cpp     ts = TS::ptr();
ts                204 modules/ts/src/ts.cpp     read_params( ts->get_file_storage() );
ts                205 modules/ts/src/ts.cpp     ts->update_context( 0, -1, true );
ts                206 modules/ts/src/ts.cpp     ts->update_context( this, -1, true );
ts                232 modules/ts/src/ts.cpp             ts->printf(TS::LOG, "%s\n", buf);
ts                234 modules/ts/src/ts.cpp             ts->set_failed_test_info( TS::FAIL_ERROR_IN_CALLED_FUNC );
ts                239 modules/ts/src/ts.cpp             ts->printf(TS::LOG, "General failure:\n\t%s (%d)\n", errorStr.c_str(), fc);
ts                241 modules/ts/src/ts.cpp             ts->set_failed_test_info( fc );
ts                245 modules/ts/src/ts.cpp             ts->printf(TS::LOG, "Unknown failure\n");
ts                247 modules/ts/src/ts.cpp             ts->set_failed_test_info( TS::FAIL_EXCEPTION );
ts                251 modules/ts/src/ts.cpp     ts->set_gtest_status();
ts                267 modules/ts/src/ts.cpp         ts->update_context( this, test_case_idx, ff );
ts                271 modules/ts/src/ts.cpp         if( code < 0 || ts->get_err_code() < 0 )
ts                279 modules/ts/src/ts.cpp         if( ts->get_err_code() < 0 )
ts                282 modules/ts/src/ts.cpp         if( validate_test_results( test_case_idx ) < 0 || ts->get_err_code() < 0 )
ts                320 modules/ts/src/ts.cpp             ts->printf( TS::CONSOLE, "." );
ts                326 modules/ts/src/ts.cpp         ts->printf( TS::CONSOLE, "." );
ts                360 modules/ts/src/ts.cpp             ts->printf(TS::LOG, "%s (test case #%d): the error code %d is different from the expected %d\n",
ts                368 modules/ts/src/ts.cpp         ts->printf(TS::LOG, "%s  (test case #%d): unknown exception was thrown (the function has likely crashed)\n",
ts                375 modules/ts/src/ts.cpp         ts->printf(TS::LOG, "%s  (test case #%d): no expected exception was thrown\n",
ts                443 modules/ts/src/ts.cpp static int tsErrorCallback( int status, const char* func_name, const char* err_msg, const char* file_name, int line, TS* ts )
ts                445 modules/ts/src/ts.cpp     ts->printf(TS::LOG, "OpenCV Error:\n\t%s (%s) in %s, file %s, line %d\n", cvErrorStr(status), err_msg, func_name[0] != 0 ? func_name : "unknown function", file_name, line);
ts                583 modules/ts/src/ts.cpp TS ts;
ts                584 modules/ts/src/ts.cpp TS* TS::ptr() { return &ts; }
ts                 92 modules/ts/src/ts_arrtest.cpp     test_case_count = cvRound( test_case_count*ts->get_test_case_count_scale() );
ts                104 modules/ts/src/ts_arrtest.cpp     RNG& rng = ts->get_rng();
ts                141 modules/ts/src/ts_arrtest.cpp     RNG& rng = ts->get_rng();
ts                263 modules/ts/src/ts_arrtest.cpp         randUni( ts->get_rng(), arr, low, high );
ts                306 modules/ts/src/ts_arrtest.cpp             code = cmpEps2(ts, test_mat[i0][j], test_mat[i1][j], err_level, element_wise_relative_error, arr_names[i0]);
ts                321 modules/ts/src/ts_arrtest.cpp                         ts->printf( TS::LOG, "%s array %d type=%sC%d, size=(%s)\n",
ts                327 modules/ts/src/ts_arrtest.cpp             ts->set_failed_test_info( code );
ts               2096 modules/ts/src/ts_func.cpp int cmpEps2( TS* ts, const Mat& a, const Mat& b, double success_err_level,
ts               2126 modules/ts/src/ts_func.cpp             ts->printf( TS::LOG, "%s\n", msg );
ts               2130 modules/ts/src/ts_func.cpp             ts->printf( TS::LOG, "%s at element %d\n", msg, idx[0] + idx[1] );
ts               2135 modules/ts/src/ts_func.cpp             ts->printf( TS::LOG, "%s at (%s)\n", msg, idxstr.c_str() );
ts               2143 modules/ts/src/ts_func.cpp int cmpEps2_64f( TS* ts, const double* val, const double* refval, int len,
ts               2149 modules/ts/src/ts_func.cpp     return cmpEps2( ts, _val, _refval, eps, true, param_name );
ts                 74 modules/video/test/test_accum.cpp     RNG& rng = ts->get_rng();
ts                155 modules/video/test/test_camshift.cpp     RNG& rng = ts->get_rng();
ts                227 modules/video/test/test_camshift.cpp     RNG& rng = ts->get_rng();
ts                283 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG, "Invalid CvBox2D or CvConnectedComp was returned by cvCamShift\n" );
ts                293 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG, "Incorrect CvBox2D size (=%.1f x %.1f, should be %.1f x %.1f)\n",
ts                302 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG, "Incorrect CvBox2D position (=(%.1f, %.1f), should be (%.1f, %.1f))\n",
ts                316 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG, "Incorrect CvBox2D angle (=%1.f, should be %1.f)\n",
ts                329 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG,
ts                339 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG,
ts                362 modules/video/test/test_camshift.cpp         ts->set_failed_test_info( code );
ts                394 modules/video/test/test_camshift.cpp     RNG& rng = ts->get_rng();
ts                444 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG, "Invalid CvConnectedComp was returned by cvMeanShift\n" );
ts                455 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG, "Incorrect CvBox2D position (=(%.1f, %.1f), should be (%.1f, %.1f))\n",
ts                468 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG,
ts                478 modules/video/test/test_camshift.cpp         ts->printf( cvtest::TS::LOG,
ts                503 modules/video/test/test_camshift.cpp         ts->set_failed_test_info( code );
ts                114 modules/video/test/test_ecc.cpp     Mat img = imread( string(ts->get_data_path()) + "shared/fruits.png", 0);
ts                119 modules/video/test/test_ecc.cpp         ts->printf( ts->LOG, "test image can not be read");
ts                120 modules/video/test/test_ecc.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                126 modules/video/test/test_ecc.cpp     cv::RNG rng = ts->get_rng();
ts                132 modules/video/test/test_ecc.cpp         ts->update_context( this, k, true );
ts                149 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                154 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                155 modules/video/test/test_ecc.cpp             ts->printf( ts->LOG, "RMS = %f",
ts                170 modules/video/test/test_ecc.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                189 modules/video/test/test_ecc.cpp     Mat img = imread( string(ts->get_data_path()) + "shared/fruits.png", 0);
ts                194 modules/video/test/test_ecc.cpp         ts->printf( ts->LOG, "test image can not be read");
ts                195 modules/video/test/test_ecc.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                201 modules/video/test/test_ecc.cpp     cv::RNG rng = ts->get_rng();
ts                205 modules/video/test/test_ecc.cpp         ts->update_context( this, k, true );
ts                224 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                229 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                230 modules/video/test/test_ecc.cpp             ts->printf( ts->LOG, "RMS = %f",
ts                246 modules/video/test/test_ecc.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                264 modules/video/test/test_ecc.cpp     Mat img = imread( string(ts->get_data_path()) + "shared/fruits.png", 0);
ts                268 modules/video/test/test_ecc.cpp         ts->printf( ts->LOG, "test image can not be read");
ts                269 modules/video/test/test_ecc.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                275 modules/video/test/test_ecc.cpp     cv::RNG rng = ts->get_rng();
ts                279 modules/video/test/test_ecc.cpp         ts->update_context( this, k, true );
ts                299 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                304 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                305 modules/video/test/test_ecc.cpp             ts->printf( ts->LOG, "RMS = %f",
ts                322 modules/video/test/test_ecc.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                339 modules/video/test/test_ecc.cpp     Mat img = imread( string(ts->get_data_path()) + "shared/fruits.png", 0);
ts                344 modules/video/test/test_ecc.cpp         ts->printf( ts->LOG, "test image can not be read");
ts                345 modules/video/test/test_ecc.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                351 modules/video/test/test_ecc.cpp     cv::RNG rng = ts->get_rng();
ts                355 modules/video/test/test_ecc.cpp         ts->update_context( this, k, true );
ts                374 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                379 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                380 modules/video/test/test_ecc.cpp             ts->printf( ts->LOG, "RMS = %f",
ts                394 modules/video/test/test_ecc.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                411 modules/video/test/test_ecc.cpp     Mat img = imread( string(ts->get_data_path()) + "shared/fruits.png", 0);
ts                416 modules/video/test/test_ecc.cpp         ts->printf( ts->LOG, "test image can not be read");
ts                417 modules/video/test/test_ecc.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                426 modules/video/test/test_ecc.cpp     cv::RNG rng = ts->get_rng();
ts                432 modules/video/test/test_ecc.cpp         ts->update_context( this, k, true );
ts                457 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                462 modules/video/test/test_ecc.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                463 modules/video/test/test_ecc.cpp             ts->printf( ts->LOG, "RMS = %f",
ts                477 modules/video/test/test_ecc.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 85 modules/video/test/test_estimaterigid.cpp     cv::RNG rng = ts->get_rng();
ts                 92 modules/video/test/test_estimaterigid.cpp         ts->update_context( this, k, true );
ts                127 modules/video/test/test_estimaterigid.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                128 modules/video/test/test_estimaterigid.cpp             ts->printf( cvtest::TS::LOG, "Threshold = %f, norm of difference = %f", thres, d );
ts                138 modules/video/test/test_estimaterigid.cpp     Mat testImg = imread( string(ts->get_data_path()) + "shared/graffiti.png", 1);
ts                141 modules/video/test/test_estimaterigid.cpp        ts->printf( ts->LOG, "test image can not be read");
ts                142 modules/video/test/test_estimaterigid.cpp        ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                159 modules/video/test/test_estimaterigid.cpp         ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                160 modules/video/test/test_estimaterigid.cpp         ts->printf( cvtest::TS::LOG, "Threshold = %f, norm of difference = %f", thres,
ts                178 modules/video/test/test_estimaterigid.cpp     ts->set_failed_test_info(cvtest::TS::OK);
ts                 69 modules/video/test/test_kalman.cpp     RNG& rng = ts->get_rng();
ts                113 modules/video/test/test_kalman.cpp     code = cvtest::cmpEps2( ts, _Sample, _state_post, EPSILON, false, "The final estimated state" );
ts                120 modules/video/test/test_kalman.cpp         ts->set_failed_test_info( code );
ts                 82 modules/video/test/test_optflowpyrlk.cpp     sprintf( filename, "%soptflow/%s", ts->get_data_path().c_str(), "lk_prev.dat" );
ts                 87 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG, "could not read %s\n", filename );
ts                 92 modules/video/test/test_optflowpyrlk.cpp     sprintf( filename, "%soptflow/%s", ts->get_data_path().c_str(), "lk_next.dat" );
ts                 97 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG, "could not read %s\n", filename );
ts                105 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG, "the loaded matrices of points are not valid\n" );
ts                119 modules/video/test/test_optflowpyrlk.cpp     sprintf( filename, "%soptflow/%s", ts->get_data_path().c_str(), "rock_1.bmp" );
ts                125 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG, "could not read %s\n", filename );
ts                131 modules/video/test/test_optflowpyrlk.cpp     sprintf( filename, "%soptflow/%s", ts->get_data_path().c_str(), "rock_2.bmp" );
ts                137 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG, "could not read %s\n", filename );
ts                179 modules/video/test/test_optflowpyrlk.cpp                 ts->printf( cvtest::TS::LOG, "The algorithm lost the point #%d\n", i );
ts                188 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG,
ts                196 modules/video/test/test_optflowpyrlk.cpp         ts->printf( cvtest::TS::LOG, "Maximum tracking error is too big (=%g) at %d\n", max_err, merr_i );
ts                209 modules/video/test/test_optflowpyrlk.cpp         ts->set_failed_test_info( code );
ts                140 modules/videoio/test/test_ffmpeg.cpp                         ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                161 modules/videoio/test/test_ffmpeg.cpp                             ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                169 modules/videoio/test/test_ffmpeg.cpp                                 ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                177 modules/videoio/test/test_ffmpeg.cpp                 ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                179 modules/videoio/test/test_ffmpeg.cpp             ts->set_failed_test_info(cvtest::TS::OK);
ts                193 modules/videoio/test/test_ffmpeg.cpp             string filename = ts->get_data_path() + "readwrite/ordinary.bmp";
ts                207 modules/videoio/test/test_ffmpeg.cpp             ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                209 modules/videoio/test/test_ffmpeg.cpp         ts->set_failed_test_info(cvtest::TS::OK);
ts                372 modules/videoio/test/test_ffmpeg.cpp                     ts->printf(SUM, "\nPSNR: %lf\n", psnr);
ts                373 modules/videoio/test/test_ffmpeg.cpp                     ts->printf(SUM, "Video #: %d\n", range.start);
ts                374 modules/videoio/test/test_ffmpeg.cpp                     ts->printf(SUM, "Frame #: %d\n", i);
ts                376 modules/videoio/test/test_ffmpeg.cpp                     ts->set_failed_test_info(cvtest::TS::FAIL_BAD_ACCURACY);
ts                377 modules/videoio/test/test_ffmpeg.cpp                     ts->set_gtest_status();
ts                394 modules/videoio/test/test_ffmpeg.cpp     cvtest::TS* ts;
ts                402 modules/videoio/test/test_ffmpeg.cpp     cvtest::TS* ts = cvtest::TS::ptr();
ts                425 modules/videoio/test/test_ffmpeg.cpp     parallel_for_(range, ReadImageAndTest(readers, ts));
ts                 64 modules/videoio/test/test_framecount.cpp     const string src_dir = ts->get_data_path();
ts                 66 modules/videoio/test/test_framecount.cpp     ts->printf(cvtest::TS::LOG, "\n\nSource files directory: %s\n", (src_dir+"video/").c_str());
ts                 77 modules/videoio/test/test_framecount.cpp             ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n\nName: big_buck_bunny.%s\nFAILED\n\n", i+1, ext[i].c_str());
ts                 78 modules/videoio/test/test_framecount.cpp             ts->printf(cvtest::TS::LOG, "Error: cannot read source video file.\n");
ts                 79 modules/videoio/test/test_framecount.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                 96 modules/videoio/test/test_framecount.cpp         ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n"\
ts                105 modules/videoio/test/test_framecount.cpp             ts->printf(cvtest::TS::LOG, "FAILED\n");
ts                106 modules/videoio/test/test_framecount.cpp             ts->printf(cvtest::TS::LOG, "\nError: actual frame count and returned frame count are not matched.\n");
ts                107 modules/videoio/test/test_framecount.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                121 modules/videoio/test/test_positioning.cpp     const string& src_dir = ts->get_data_path();
ts                123 modules/videoio/test/test_positioning.cpp     ts->printf(cvtest::TS::LOG, "\n\nSource files directory: %s\n", (src_dir+"video/").c_str());
ts                138 modules/videoio/test/test_positioning.cpp         ts->printf(cvtest::TS::LOG, "\nReading video file in %s...\n", file_path.c_str());
ts                144 modules/videoio/test/test_positioning.cpp             ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n\nName: big_buck_bunny.%s\nFAILED\n\n", i+1, ext[i].c_str());
ts                145 modules/videoio/test/test_positioning.cpp             ts->printf(cvtest::TS::LOG, "Error: cannot read source video file.\n");
ts                146 modules/videoio/test/test_positioning.cpp             ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
ts                182 modules/videoio/test/test_positioning.cpp                     ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n\nName: big_buck_bunny.%s\n", i+1, ext[i].c_str());
ts                187 modules/videoio/test/test_positioning.cpp                     ts->printf(cvtest::TS::LOG, "\nIteration: %d\n", j);
ts                189 modules/videoio/test/test_positioning.cpp                 ts->printf(cvtest::TS::LOG, "Required pos: %d\nReturned pos: %d\n", idx.at(j), val);
ts                190 modules/videoio/test/test_positioning.cpp                 ts->printf(cvtest::TS::LOG, "Error: required and returned positions are not matched.\n");
ts                191 modules/videoio/test/test_positioning.cpp                 ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
ts                206 modules/videoio/test/test_positioning.cpp     ts->printf(cvtest::TS::LOG, "\nSuccessfull experiments: %d (%d%%)\n", n-failed_videos, 100*(n-failed_videos)/n);
ts                207 modules/videoio/test/test_positioning.cpp     ts->printf(cvtest::TS::LOG, "Failed experiments: %d (%d%%)\n", failed_videos, 100*failed_videos/n);
ts                153 modules/videoio/test/test_video_io.cpp     ts->printf(ts->LOG, "reading image : %s\n", _name.c_str());
ts                160 modules/videoio/test/test_video_io.cpp         ts->set_failed_test_info(ts->FAIL_MISSING_TEST_DATA);
ts                190 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, " full_name : %s\n", full_name.c_str());
ts                197 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Reading failed at fmt=%s\n", ext.c_str());
ts                198 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                206 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Reading image from file: too big difference (=%g) with fmt=%s\n", psnr, ext.c_str());
ts                207 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_BAD_ACCURACY);
ts                226 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Encoding failed with fmt=%s\n", ext.c_str());
ts                227 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                235 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Decoding failed with fmt=%s\n", ext.c_str());
ts                236 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                244 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Decoding image from memory: too small PSNR (=%gdb) with fmt=%s\n", psnr, ext.c_str());
ts                245 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                251 modules/videoio/test/test_video_io.cpp     ts->printf(ts->LOG, "end test function : ImagesTest \n");
ts                252 modules/videoio/test/test_video_io.cpp     ts->set_failed_test_info(ts->OK);
ts                261 modules/videoio/test/test_video_io.cpp     ts->printf(ts->LOG, "reading video : %s and converting it to %s\n", src_file.c_str(), tmp_name.c_str());
ts                267 modules/videoio/test/test_video_io.cpp         ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                288 modules/videoio/test/test_video_io.cpp                 ts->printf(ts->LOG, "can't create writer (with fourcc : %s)\n",
ts                291 modules/videoio/test/test_video_io.cpp                 ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                305 modules/videoio/test/test_video_io.cpp         ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                324 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Too low frame %d psnr = %gdb\n", i, psnr);
ts                325 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                339 modules/videoio/test/test_video_io.cpp     ts->printf(ts->LOG, "end test function : ImagesVideo \n");
ts                354 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISSING_TEST_DATA);
ts                363 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, " full_name : %s\n", full_name.c_str());
ts                370 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Reading failed at fmt=bmp\n");
ts                371 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                379 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Reading image from file: too big difference (=%g) with fmt=bmp\n", psnr);
ts                380 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_BAD_ACCURACY);
ts                399 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Encoding failed with fmt=bmp\n");
ts                400 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                408 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Decoding failed with fmt=bmp\n");
ts                409 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                417 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Decoding image from memory: too small PSNR (=%gdb) with fmt=bmp\n", psnr);
ts                418 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                423 modules/videoio/test/test_video_io.cpp     ts->printf(ts->LOG, "end test function : SpecificImageTest \n");
ts                424 modules/videoio/test/test_video_io.cpp     ts->set_failed_test_info(ts->OK);
ts                443 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, "Creating a video in %s...\n", video_file.c_str());
ts                444 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, "Cannot create VideoWriter object with codec %s.\n", fourcc_str.c_str());
ts                445 modules/videoio/test/test_video_io.cpp         ts->set_failed_test_info(ts->FAIL_MISMATCH);
ts                459 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Creating a video in %s...\n", video_file.c_str());
ts                460 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Error: cannot read frame from %s.\n", file_path.c_str());
ts                461 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Continue creating the video file...\n");
ts                462 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_INVALID_TEST_DATA);
ts                503 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, "\nFrame count checking for video_%s.%s...\n", fourcc_str.c_str(), ext.c_str());
ts                504 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, "Video codec: %s\n", fourcc_str.c_str());
ts                506 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Required frame count: %d-%d; Returned frame count: %d\n",
ts                509 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Required frame count: %d; Returned frame count: %d\n", IMAGE_COUNT, FRAME_COUNT);
ts                510 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, "Error: Incorrect frame count in the video.\n");
ts                511 modules/videoio/test/test_video_io.cpp         ts->printf(ts->LOG, "Continue checking...\n");
ts                512 modules/videoio/test/test_video_io.cpp         ts->set_failed_test_info(ts->FAIL_BAD_ACCURACY);
ts                521 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "\nVideo file directory: %s\n", ".");
ts                522 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "File name: video_%s.%s\n", fourcc_str.c_str(), ext.c_str());
ts                523 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Video codec: %s\n", fourcc_str.c_str());
ts                524 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Error: cannot read the next frame with index %d.\n", i+1);
ts                525 modules/videoio/test/test_video_io.cpp             ts->set_failed_test_info(ts->FAIL_MISSING_TEST_DATA);
ts                536 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "\nReading frame from the file video_%s.%s...\n", fourcc_str.c_str(), ext.c_str());
ts                537 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Frame index: %d\n", i+1);
ts                538 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Difference between saved and original images: %g\n", psnr);
ts                539 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Maximum allowed difference: %g\n", thresDbell);
ts                540 modules/videoio/test/test_video_io.cpp             ts->printf(ts->LOG, "Error: too big difference between saved and original images.\n");
ts                548 modules/videoio/test/test_video_io.cpp     ImageTest(ts->get_data_path());
ts                553 modules/videoio/test/test_video_io.cpp     SpecificImageTest(ts->get_data_path());
ts                563 modules/videoio/test/test_video_io.cpp         VideoTest(ts->get_data_path(), fmt);
ts                574 modules/videoio/test/test_video_io.cpp         SpecificVideoTest(ts->get_data_path(), fmt);
ts                 95 modules/videoio/test/test_video_pos.cpp             ts->printf(ts->LOG, "\nFile: %s\n", filename.c_str());
ts                 99 modules/videoio/test/test_video_pos.cpp                 ts->printf(ts->LOG, "\nError: cannot create video file");
ts                100 modules/videoio/test/test_video_pos.cpp                 ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                108 modules/videoio/test/test_video_pos.cpp                 ts->printf(ts->LOG, "\nError: cannot read video file.");
ts                109 modules/videoio/test/test_video_pos.cpp                 ts->set_failed_test_info(ts->FAIL_INVALID_TEST_DATA);
ts                124 modules/videoio/test/test_video_pos.cpp                 ts->printf(ts->LOG, "\nError: returned frame count (N0=%d, N=%d) is different from the reference number %d\n", N0, N, n_frames);
ts                125 modules/videoio/test/test_video_pos.cpp                 ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                135 modules/videoio/test/test_video_pos.cpp                     ts->printf(ts->LOG, "\nError: cannot seek to frame %d.\n", idx);
ts                136 modules/videoio/test/test_video_pos.cpp                     ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                147 modules/videoio/test/test_video_pos.cpp                     ts->printf(ts->LOG, "\nError: the current position (%d) after seek is different from specified (%d)\n",
ts                149 modules/videoio/test/test_video_pos.cpp                     ts->printf(ts->LOG, "Saving both frames ...\n");
ts                150 modules/videoio/test/test_video_pos.cpp                     ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                156 modules/videoio/test/test_video_pos.cpp                     ts->printf(ts->LOG, "\nError: cannot read a frame at position %d.\n", idx);
ts                157 modules/videoio/test/test_video_pos.cpp                     ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);
ts                165 modules/videoio/test/test_video_pos.cpp                     ts->printf(ts->LOG, "The frame read after positioning to %d is incorrect (PSNR=%g)\n", idx, err);
ts                166 modules/videoio/test/test_video_pos.cpp                     ts->printf(ts->LOG, "Saving both frames ...\n");
ts                167 modules/videoio/test/test_video_pos.cpp                     ts->set_failed_test_info(ts->FAIL_INVALID_OUTPUT);