Home
last modified time | relevance | path

Searched refs:borderType (Results 1 – 6 of 6) sorted by relevance

/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/3rdparty/carotene/src/
Dcommon.cpp71 ptrdiff_t borderInterpolate(ptrdiff_t _p, size_t _len, BORDER_MODE borderType, size_t startMargin, … in borderInterpolate() argument
77 else if( borderType == BORDER_MODE_REPLICATE ) in borderInterpolate()
79 else if( borderType == BORDER_MODE_REFLECT || borderType == BORDER_MODE_REFLECT101 ) in borderInterpolate()
81 s32 delta = borderType == BORDER_MODE_REFLECT101; in borderInterpolate()
93 else if( borderType == BORDER_MODE_WRAP ) in borderInterpolate()
100 else if( borderType == BORDER_MODE_CONSTANT ) in borderInterpolate()
Dblur.cpp194 BORDER_MODE borderType, u8 borderValue) in blur3x3() argument
196 internal::assertSupportedConfiguration(isBlurU8Supported(size, cn, borderType)); in blur3x3()
210 if (borderType == BORDER_MODE_CONSTANT) in blur3x3()
228 if (borderType == BORDER_MODE_REFLECT101) { in blur3x3()
231 } else if (borderType == BORDER_MODE_CONSTANT) { in blur3x3()
260 if (borderType == BORDER_MODE_CONSTANT) in blur3x3()
264 else if (borderType == BORDER_MODE_REFLECT101) in blur3x3()
308 if (borderType == BORDER_MODE_CONSTANT) in blur3x3()
311 } else if (borderType == BORDER_MODE_REFLECT101) in blur3x3()
334 if (borderType == BORDER_MODE_REFLECT101) { in blur3x3()
[all …]
Dgaussian_blur.cpp212 BORDER_MODE borderType, u8 borderValue, Margin borderMargin) in gaussianBlur5x5() argument
214 internal::assertSupportedConfiguration(isGaussianBlur5x5Supported(size, cn, borderType)); in gaussianBlur5x5()
220 if (borderType == BORDER_MODE_CONSTANT) in gaussianBlur5x5()
226 …ptrdiff_t idx_l1 = internal::borderInterpolate(-1, size.width, borderType, borderMargin.left, bord… in gaussianBlur5x5()
227 …ptrdiff_t idx_l2 = internal::borderInterpolate(-2, size.width, borderType, borderMargin.left, bord… in gaussianBlur5x5()
228 …ptrdiff_t idx_r1 = internal::borderInterpolate(size.width + 0, size.width, borderType, borderMargi… in gaussianBlur5x5()
229 …ptrdiff_t idx_r2 = internal::borderInterpolate(size.width + 1, size.width, borderType, borderMargi… in gaussianBlur5x5()
235 if (borderType == BORDER_MODE_CONSTANT) in gaussianBlur5x5()
252 …ptrdiff_t idx_rm2 = internal::borderInterpolate(i - 2, size.height, borderType, borderMargin.top, … in gaussianBlur5x5()
253 …ptrdiff_t idx_rm1 = internal::borderInterpolate(i - 1, size.height, borderType, borderMargin.top, … in gaussianBlur5x5()
[all …]
Dcommon.hpp82 ptrdiff_t borderInterpolate(ptrdiff_t _p, size_t _len, BORDER_MODE borderType, size_t startMargin =…
/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/3rdparty/carotene/hal/
Dtegra_hal.hpp1074 …int max_width, int max_height, int src_type, int dst_type, int borderType, double delta, int ancho… in TEGRA_FILTERINIT() argument
1086 switch(borderType) in TEGRA_FILTERINIT()
1184 int anchor_x, int anchor_y, double delta, int borderType) in TEGRA_SEPFILTERINIT() argument
1194 switch(borderType) in TEGRA_SEPFILTERINIT()
1301 …int borderType, const double borderValue[4], int iterations, bool allowSubmatrix, bool allowInplac… in TEGRA_MORPHINIT() argument
1354 switch(borderType) in TEGRA_MORPHINIT()
1471 …src_height, dst_data, dst_step, dst_width, dst_height, M, interpolation, borderType, borderValue) \ argument
1474 …(src_type == CV_8UC1 || src_type == CV_8SC1) && (borderType == CV_HAL_BORDER_REPLICATE || borderTy…
1480borderType == CV_HAL_BORDER_REPLICATE ? CAROTENE_NS::BORDER_MODE_REPLICATE : CAROTENE_NS::BORDER_M…
1484 …(src_type == CV_8UC1 || src_type == CV_8SC1) && (borderType == CV_HAL_BORDER_REPLICATE || borderTy…
[all …]
/device/board/isoftstone/yangfan/common/seetafaceengine/opencv2/3rdparty/carotene/include/carotene/
Dfunctions.hpp1493 BORDER_MODE borderType, u8 borderValue);
1498 BORDER_MODE borderType, u8 borderValue);
1509 BORDER_MODE borderType, f32 borderValue, Margin borderMargin);
1515 BORDER_MODE borderType, s32 borderValue, Margin borderMargin);
1537 BORDER_MODE borderType, u8 borderValue, Margin borderMargin);
1542 BORDER_MODE borderType, u16 borderValue, Margin borderMargin);
1547 BORDER_MODE borderType, s16 borderValue, Margin borderMargin);
1552 BORDER_MODE borderType, s32 borderValue, Margin borderMargin);
1574 BORDER_MODE borderType, f32 borderValue);
1585 BORDER_MODE borderType, u8 borderValue, Margin borderMargin = Margin());