mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 00:03:03 +04:00
Implementation of bit-exact resize. Internal calls to linear resize updated to use bit-exact version. (#9468)
This commit is contained in:
committed by
Vadim Pisarevsky
parent
84ee4d701a
commit
51cb56ef2c
@@ -279,6 +279,8 @@ enum InterpolationFlags{
|
||||
INTER_AREA = 3,
|
||||
/** Lanczos interpolation over 8x8 neighborhood */
|
||||
INTER_LANCZOS4 = 4,
|
||||
/** Bit exact bilinear interpolation */
|
||||
INTER_LINEAR_EXACT = 5,
|
||||
/** mask for interpolation codes */
|
||||
INTER_MAX = 7,
|
||||
/** flag, fills all of the destination image pixels. If some of them correspond to outliers in the
|
||||
|
||||
Reference in New Issue
Block a user