Merge pull request #25894 from mshabunin:fix-test-templ-match

imgproc: reduce template sizes in templMatch test
pull/25888/head
Alexander Smorkalov 4 months ago committed by GitHub
commit 7dcc305301
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      modules/imgproc/test/test_templmatch.cpp

@ -318,7 +318,7 @@ TEST_P(matchTemplate_Modes, accuracy)
SCOPED_TRACE(cv::format("iteration %d", ITER));
const Size imgSize(rng.uniform(128, 320), rng.uniform(128, 240));
const Size templSize(rng.uniform(1, 100), rng.uniform(1, 100));
const Size templSize(rng.uniform(1, 30), rng.uniform(1, 30));
Mat img(imgSize, data_type, Scalar::all(0));
Mat templ(templSize, data_type, Scalar::all(0));
cvtest::randUni(rng, img, Scalar::all(0), Scalar::all(255));

Loading…
Cancel
Save