Lines Matching full:bordervalue
1004 Scalar borderValue = _borderValue;
1006 borderValue == morphologyDefaultBorderValue() )
1012 borderValue = Scalar::all( depth == CV_8U ? (double)UCHAR_MAX :
1017 borderValue = Scalar::all( depth == CV_8U || depth == CV_16U ?
1024 type, type, type, _rowBorderType, _columnBorderType, borderValue );
1090 borderValue(_borderValue)
1118 rowBorderType, columnBorderType, borderValue );
1136 Scalar borderValue;
1265 int borderType, const Scalar &borderValue)
1271 !( borderType == cv::BORDER_REPLICATE || (borderType == cv::BORDER_CONSTANT && borderValue == morphologyDefaultBorderValue() &&
1680 int borderType, const Scalar& borderValue )
1687 borderType == cv::BORDER_CONSTANT && borderValue == morphologyDefaultBorderValue() &&
1690 ocl_morphOp(_src, _dst, kernel, anchor, iterations, op, borderType, borderValue) )
1717 if( IPPMorphOp(op, _src, _dst, kernel, anchor, iterations, borderType, borderValue) )
1738 MorphologyRunner(src, dst, nStripes, iterations, op, kernel, anchor, borderType, borderType, borderValue));
1745 int borderType, const Scalar& borderValue )
1747 morphOp( MORPH_ERODE, src, dst, kernel, anchor, iterations, borderType, borderValue );
1753 int borderType, const Scalar& borderValue )
1755 morphOp( MORPH_DILATE, src, dst, kernel, anchor, iterations, borderType, borderValue );
1764 int borderType, const Scalar& borderValue)
1774 if (!ocl_morphOp( _src, _dst, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue ))
1778 if (!ocl_morphOp( _src, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue ))
1782 if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue ))
1784 if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue ))
1788 if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue ))
1790 if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue ))
1794 if (!ocl_morphOp( _src, temp, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue ))
1796 if (!ocl_morphOp( _src, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue, MORPH_GRADIENT, temp ))
1800 if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue ))
1802 if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue, MORPH_TOPHAT, _src ))
1806 if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue ))
1808 if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue, MORPH_BLACKHAT, _src ))
1824 int borderType, const Scalar& borderValue )
1837 borderType == cv::BORDER_CONSTANT && borderValue == morphologyDefaultBorderValue(),
1838 ocl_morphologyEx(_src, _dst, op, kernel, anchor, iterations, borderType, borderValue))
1848 borderValue );
1851 dilate( src, dst, kernel, anchor, iterations, borderType, borderValue );
1854 erode( src, dst, kernel, anchor, iterations, borderType, borderValue );
1855 dilate( dst, dst, kernel, anchor, iterations, borderType, borderValue );
1858 dilate( src, dst, kernel, anchor, iterations, borderType, borderValue );
1859 erode( dst, dst, kernel, anchor, iterations, borderType, borderValue );
1862 erode( src, temp, kernel, anchor, iterations, borderType, borderValue );
1863 dilate( src, dst, kernel, anchor, iterations, borderType, borderValue );
1869 erode( src, temp, kernel, anchor, iterations, borderType, borderValue );
1870 dilate( temp, temp, kernel, anchor, iterations, borderType, borderValue );
1876 dilate( src, temp, kernel, anchor, iterations, borderType, borderValue );
1877 erode( temp, temp, kernel, anchor, iterations, borderType, borderValue );