Home
last modified time | relevance | path

Searched refs:borderTypeNI (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
Dprivate.hpp214 static inline IppiBorderType ippiGetBorderType(int borderTypeNI) in ippiGetBorderType() argument
216 return borderTypeNI == cv::BORDER_CONSTANT ? ippBorderConst : in ippiGetBorderType()
217 borderTypeNI == cv::BORDER_WRAP ? ippBorderWrap : in ippiGetBorderType()
218 borderTypeNI == cv::BORDER_REPLICATE ? ippBorderRepl : in ippiGetBorderType()
219 borderTypeNI == cv::BORDER_REFLECT_101 ? ippBorderMirror : in ippiGetBorderType()
220 borderTypeNI == cv::BORDER_REFLECT ? ippBorderMirrorR : (IppiBorderType)-1; in ippiGetBorderType()
/external/opencv3/modules/imgproc/src/
Dcorner.cpp550 int borderTypeNI = borderType & ~BORDER_ISOLATED; in cornerMinEigenVal() local
551 if ((borderTypeNI == BORDER_REPLICATE && (!src.isSubmatrix() || isolated)) && in cornerMinEigenVal()
610 int borderTypeNI = borderType & ~BORDER_ISOLATED; in cornerHarris() local
614 …(borderTypeNI == BORDER_CONSTANT || borderTypeNI == BORDER_REPLICATE) && cn == 1 && (!src.isSubmat… in cornerHarris()
632 … IppiBorderType borderTypeIpp = borderTypeNI == BORDER_CONSTANT ? ippBorderConst : ippBorderRepl; in cornerHarris()
Dpyramids.cpp1191 int borderTypeNI = borderType & ~BORDER_ISOLATED; in pyrDown() local
1192 …if (borderTypeNI == BORDER_DEFAULT && (!src.isSubmatrix() || isolated) && dsz == Size((src.cols + … in pyrDown()
1268 int borderTypeNI = borderType & ~BORDER_ISOLATED; in pyrUp() local
1269 …if (borderTypeNI == BORDER_DEFAULT && (!src.isSubmatrix() || isolated) && dsz == Size(src.cols*2, … in pyrUp()
1347 int borderTypeNI = borderType & ~BORDER_ISOLATED; in buildPyramid() local
1348 if (borderTypeNI == BORDER_DEFAULT && (!src.isSubmatrix() || isolated)) in buildPyramid()
Dderiv.cpp819 int borderTypeNI = borderType & ~BORDER_ISOLATED; in Laplacian() local
828 IppiBorderType borderTypeIpp = ippiGetBorderType(borderTypeNI); in Laplacian()
Dfilter.cpp4593 int borderTypeNI = borderType & ~BORDER_ISOLATED; in filter2D() local
4594 IppiBorderType ippBorderType = ippiGetBorderType(borderTypeNI); in filter2D()
4596 if (borderTypeNI == BORDER_CONSTANT || borderTypeNI == BORDER_REPLICATE) in filter2D()