Skip to content

Commit

Permalink
CI ARM Linux: disable INTER_LINEAR_EXACT
Browse files Browse the repository at this point in the history
OpenCV in Buster (Linux armhf build) doesn't have
INTER_LINEAR_EXACT. Similarly to INTER_NEAREST_EXACT, this doesn't seem
to be necessary so enable it for now (althoug compat macros should be
possible as well).
  • Loading branch information
MartinPulec committed Jan 23, 2024
1 parent 560bf40 commit c1c099c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/capture_filter/resize_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ using cv::INTER_AREA;
using cv::INTER_CUBIC;
using cv::INTER_LANCZOS4;
using cv::INTER_LINEAR;
using cv::INTER_LINEAR_EXACT;
// using cv::INTER_LINEAR_EXACT;
using cv::INTER_NEAREST;
// using cv::INTER_NEAREST_EXACT;
using cv::Mat;
Expand Down Expand Up @@ -212,7 +212,7 @@ static const struct {
{ INTER_CUBIC, "cubic" },
{ INTER_AREA, "area" },
{ INTER_LANCZOS4, "lanczos4" },
{ INTER_LINEAR_EXACT, "linear_exact" },
// { INTER_LINEAR_EXACT, "linear_exact" },
// { INTER_NEAREST_EXACT, "nearest_exact"},
};

Expand Down

0 comments on commit c1c099c

Please sign in to comment.