diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-09-26 20:57:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-09-26 21:10:13 +0200 |
commit | 285c75682f1e93a8809876ec7b2f6cd2cc79931d (patch) | |
tree | c9da2dbdd98e887d50781b662e5c959ce4b838b8 /tracker-pt | |
parent | d4d799cac8080d4066394f338c31611ae655d5f6 (diff) |
compat: remove crappy uround()
Diffstat (limited to 'tracker-pt')
-rw-r--r-- | tracker-pt/module/point_extractor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/module/point_extractor.cpp b/tracker-pt/module/point_extractor.cpp index 2f84bf86..05af99a1 100644 --- a/tracker-pt/module/point_extractor.cpp +++ b/tracker-pt/module/point_extractor.cpp @@ -221,7 +221,7 @@ void PointExtractor::threshold_image(const cv::Mat& frame_gray, cv::Mat1b& outpu const f radius = threshold_radius_value(frame_gray.cols, frame_gray.rows, threshold_slider_value); float const* const __restrict ptr = hist.ptr<float>(0); - const unsigned area = uround(3 * pi * radius*radius); + const unsigned area = unsigned(iround(3 * pi * radius*radius)); const unsigned sz = unsigned(hist.cols * hist.rows); constexpr unsigned min_thres = 64; unsigned thres = min_thres; |