0002-Assign-BORDER_TRANSPARENT-a-unique-constant.patch
b/modules/imgproc/include/opencv2/imgproc/imgproc.hpp | ||
---|---|---|
60 | 60 | |
61 | 61 |
//! various border interpolation methods |
62 | 62 |
enum { BORDER_REPLICATE=IPL_BORDER_REPLICATE, BORDER_CONSTANT=IPL_BORDER_CONSTANT, |
63 |
BORDER_REFLECT=IPL_BORDER_REFLECT, BORDER_REFLECT_101=IPL_BORDER_REFLECT_101,
|
|
64 |
BORDER_REFLECT101=BORDER_REFLECT_101, BORDER_WRAP=IPL_BORDER_WRAP,
|
|
63 |
BORDER_REFLECT=IPL_BORDER_REFLECT, BORDER_WRAP=IPL_BORDER_WRAP,
|
|
64 |
BORDER_REFLECT_101=IPL_BORDER_REFLECT_101, BORDER_REFLECT101=BORDER_REFLECT_101,
|
|
65 | 65 |
BORDER_TRANSPARENT, BORDER_DEFAULT=BORDER_REFLECT_101, BORDER_ISOLATED=16 }; |
66 | 66 | |
67 | 67 |
//! 1D interpolation function: returns coordinate of the "donor" pixel for the specified location p. |
68 |
- |