We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f46b6 commit e8caa9bCopy full SHA for e8caa9b
modules/imgproc/src/resize.cpp
@@ -64,12 +64,6 @@ namespace cv
64
const int INTER_RESIZE_COEF_BITS=11;
65
const int INTER_RESIZE_COEF_SCALE=1 << INTER_RESIZE_COEF_BITS;
66
67
-static inline void interpolateLinear( float x, float* coeffs )
68
-{
69
- coeffs[0] = 1.f - x;
70
- coeffs[1] = x;
71
-}
72
-
73
static inline void interpolateCubic( float x, float* coeffs )
74
{
75
const float A = -0.75f;
0 commit comments