Milinda Pro
Pages
(Move to ...)
Home
Java
C#
Visual Studio
C++
Videos
▼
OpenCV Filters - dilate
›
Dilates an image by using a specific structuring element. C++: void dilate(InputArray src, OutputArray dst, InputArray kernel, Point a...
OpenCV Filters - copyMakeBorder
›
Forms a border around an image. C++: void copyMakeBorder(InputArray src, OutputArray dst, int top, int bottom, int left, int right, int b...
OpenCV Image Filtering
›
This article describes OpenCV Image filtering functions with code examples and sample images. Adaptive Bilateral Filter - cv::adaptiveBil...
OpenCV Filters - boxFilter
›
Blurs an image using the box filter. C++: void boxFilter(InputArray src, OutputArray dst, int ddepth, Size ksize, Point anchor=Point(-1...
OpenCV Filters - buildPyramid
›
Constructs the Gaussian pyramid for an image. C++: void buildPyramid(InputArray src, OutputArrayOfArrays dst, int maxlevel, int borderType...
OpenCV Filters - bilateralFilter
›
Applies the bilateral filter to an image. C++: void blur(InputArray src, OutputArray dst, Size ksize, Point anchor=Point(-1,-1), int bo...
OpenCV Filters - Blur
›
Blurs an image using the normalized box filter. C++: void blur(InputArray src, OutputArray dst, Size ksize, Point anchor=Point(-1,-1), i...
2 comments:
OpenCV Filters - adaptiveBilateralFilter
›
Applies the adaptive bilateral filter to an image. C++: void adaptiveBilateralFilter(InputArray src, OutputArray dst, Size ksize, double ...
‹
›
Home
View web version