Lines Matching refs:tolerance
35 float tolerance = 1.0f;
77 std::cerr << "Missing tolerance value for RMSE comparison."
82 sstream >> opts->tolerance;
84 std::cerr << "Invalid tolerance value " << args[i] << std::endl;
87 if (opts->tolerance < 0 || opts->tolerance > 255) {
97 std::cerr << "Missing tolerance value for histogram EMD comparison."
102 sstream >> opts->tolerance;
104 std::cerr << "Invalid tolerance value " << args[i] << std::endl;
107 if (opts->tolerance < 0 || opts->tolerance > 1) {
188 res = buffers[0].CompareRMSE(&buffers[1], options.tolerance);
190 res = buffers[0].CompareHistogramEMD(&buffers[1], options.tolerance);