1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 14:41:58 +08:00

Warning fixes for FastCV module.

This commit is contained in:
Alexander Smorkalov
2025-03-03 09:22:59 +03:00
parent c44f7ee48f
commit 62e97dad2a
2 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ PERF_TEST_P(HoughLinesPerfTest, run,
{
auto p = GetParam();
std::string fname = std::get<0>(p);
double threshold = std::get<1>(p);
double thrld = std::get<1>(p);
cv::Mat src = imread(cvtest::findDataFile(fname), cv::IMREAD_GRAYSCALE);
// make it aligned by 8
@@ -34,7 +34,7 @@ PERF_TEST_P(HoughLinesPerfTest, run,
{
std::vector<cv::Vec4f> lines;
startTimer();
cv::fastcv::houghLines(src, lines, threshold);
cv::fastcv::houghLines(src, lines, thrld);
stopTimer();
}