OpenCV 4.11.0
开源计算机视觉库
加载中…
搜索中…
无匹配项

详细描述

本节描述的函数和类用于对二维图像执行各种线性或非线性滤波操作。

注意
  • 包含所有基本形态学运算符(如腐蚀和膨胀)的示例可在opencv_source_code/samples/gpu/morphology.cpp中找到。

类 cv::cuda::Filter
 所有CUDA滤波器的通用接口:更多…
 

函数

Ptr< Filtercv::cuda::createBoxFilter (int srcType, int dstType, Size ksize, Point anchor=Point(-1, -1), int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建归一化的二维盒式滤波器。
 
Ptr< Filtercv::cuda::createBoxMaxFilter (int srcType, Size ksize, Point anchor=Point(-1, -1), int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建最大值滤波器。
 
Ptr< Filtercv::cuda::createBoxMinFilter (int srcType, Size ksize, Point anchor=Point(-1, -1), int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建最小值滤波器。
 
Ptr< Filtercv::cuda::createColumnSumFilter (int srcType, int dstType, int ksize, int anchor=-1, int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建垂直一维盒式滤波器。
 
Ptr< Filtercv::cuda::createDerivFilter (int srcType, int dstType, int dx, int dy, int ksize, bool normalize=false, double scale=1, int rowBorderMode=BORDER_DEFAULT, int columnBorderMode=-1)
 创建一个广义的Deriv算子。
 
Ptr< Filtercv::cuda::createGaussianFilter (int srcType, int dstType, Size ksize, double sigma1, double sigma2=0, int rowBorderMode=BORDER_DEFAULT, int columnBorderMode=-1)
 创建一个高斯滤波器。
 
Ptr< Filtercv::cuda::createLaplacianFilter (int srcType, int dstType, int ksize=1, double scale=1, int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建一个拉普拉斯算子。
 
Ptr< Filtercv::cuda::createLinearFilter (int srcType, int dstType, InputArray kernel, Point anchor=Point(-1, -1), int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建一个不可分离的线性二维滤波器。
 
Ptr< Filtercv::cuda::createMorphologyFilter (int op, int srcType, InputArray kernel, Point anchor=Point(-1, -1), int iterations=1)
 创建一个二维形态学滤波器。
 
Ptr< Filtercv::cuda::createRowSumFilter (int srcType, int dstType, int ksize, int anchor=-1, int borderMode=BORDER_DEFAULT, Scalar borderVal=Scalar::all(0))
 创建一个水平一维盒式滤波器。
 
Ptr< Filtercv::cuda::createScharrFilter (int srcType, int dstType, int dx, int dy, double scale=1, int rowBorderMode=BORDER_DEFAULT, int columnBorderMode=-1)
 创建一个垂直或水平Scharr算子。
 
Ptr< Filtercv::cuda::createSeparableLinearFilter (int srcType, int dstType, InputArray rowKernel, InputArray columnKernel, Point anchor=Point(-1,-1), int rowBorderMode=BORDER_DEFAULT, int columnBorderMode=-1)
 创建一个可分离线性滤波器。支持就地处理。
 
Ptr< Filtercv::cuda::createSobelFilter (int srcType, int dstType, int dx, int dy, int ksize=3, double scale=1, int rowBorderMode=BORDER_DEFAULT, int columnBorderMode=-1)
 创建一个Sobel算子。
 

函数文档

◆ createBoxFilter()

Ptr< Filter > cv::cuda::createBoxFilter ( int srcType,
int dstType,
Size ksize,
Point anchor = Point(-1, -1),
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建归一化的二维盒式滤波器。

参数
srcType输入图像类型。目前仅支持 CV_8UC1、CV_8UC4 和 CV_32FC1。
dstType输出图像类型。目前仅支持与 src 相同的类型。
ksize卷积核大小。
锚点锚点。默认值 Point(-1, -1) 表示锚点位于卷积核中心。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。
参见
boxFilter

◆ createBoxMaxFilter()

Ptr< Filter > cv::cuda::createBoxMaxFilter ( int srcType,
Size ksize,
Point anchor = Point(-1, -1),
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建最大值滤波器。

参数
srcType输入/输出图像类型。仅支持 CV_8UC1 和 CV_8UC4。
ksize卷积核大小。
锚点锚点。默认值 (-1) 表示锚点位于卷积核中心。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。

◆ createBoxMinFilter()

Ptr< Filter > cv::cuda::createBoxMinFilter ( int srcType,
Size ksize,
Point anchor = Point(-1, -1),
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建最小值滤波器。

参数
srcType输入/输出图像类型。仅支持 CV_8UC1 和 CV_8UC4。
ksize卷积核大小。
锚点锚点。默认值 (-1) 表示锚点位于卷积核中心。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。

◆ createColumnSumFilter()

Ptr< Filter > cv::cuda::createColumnSumFilter ( int srcType,
int dstType,
int ksize,
int anchor = -1,
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建垂直一维盒式滤波器。

参数
srcType输入图像类型。目前仅支持 CV_8UC1 类型。
dstType输出图像类型。目前仅支持 CV_32FC1 类型。
ksize卷积核大小。
锚点锚点。默认值 (-1) 表示锚点位于卷积核中心。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。

◆ createDerivFilter()

Ptr< Filter > cv::cuda::createDerivFilter ( int srcType,
int dstType,
int dx,
int dy,
int ksize,
布尔值 normalize = false,
双精度浮点数 scale = 1,
int rowBorderMode = BORDER_DEFAULT,
int columnBorderMode = -1 )

#include <opencv2/cudafilters.hpp>

创建一个广义的Deriv算子。

参数
srcType源图像类型。
dstType目标数组类型。
dx关于 x 的导数阶数。
dy关于 y 的导数阶数。
ksize孔径大小。详情请参阅 getDerivKernels。
normalize指示是否归一化(缩小)滤波器系数的标志。详情请参阅 getDerivKernels。
scale计算的导数值的可选比例因子。默认情况下,不应用缩放。详情请参阅 getDerivKernels。
rowBorderMode垂直方向的像素外推方法。详情请参阅 borderInterpolate。
columnBorderMode水平方向的像素外推方法。

◆ createGaussianFilter()

Ptr< Filter > cv::cuda::createGaussianFilter ( int srcType,
int dstType,
Size ksize,
双精度浮点数 sigma1,
双精度浮点数 sigma2 = 0,
int rowBorderMode = BORDER_DEFAULT,
int columnBorderMode = -1 )

#include <opencv2/cudafilters.hpp>

创建一个高斯滤波器。

参数
srcType源图像类型。
dstType目标数组类型。
ksize孔径大小。详情请参阅 getGaussianKernel。
sigma1水平方向的高斯 sigma。详情请参阅 getGaussianKernel。
sigma2垂直方向的高斯 sigma。如果为 0,则 \(\texttt{sigma2}\leftarrow\texttt{sigma1}\) 。
rowBorderMode垂直方向的像素外推方法。详情请参阅 borderInterpolate。
columnBorderMode水平方向的像素外推方法。
参见
GaussianBlur

◆ createLaplacianFilter()

Ptr< Filter > cv::cuda::createLaplacianFilter ( int srcType,
int dstType,
int ksize = 1,
双精度浮点数 scale = 1,
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建一个拉普拉斯算子。

参数
srcType输入图像类型。支持 CV_8U、CV_16U 和 CV_32F 单通道和四通道图像。
dstType输出图像类型。目前仅支持与 src 相同的类型。
ksize用于计算二阶导数滤波器的孔径大小(参见 getDerivKernels)。它必须为正奇数。仅支持 ksize = 1 和 ksize = 3。
scale计算的拉普拉斯值的可选比例因子。默认情况下,不应用缩放(参见 getDerivKernels)。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。
参见
Laplacian

◆ createLinearFilter()

Ptr< Filter > cv::cuda::createLinearFilter ( int srcType,
int dstType,
InputArray kernel,
Point anchor = Point(-1, -1),
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建一个不可分离的线性二维滤波器。

参数
srcType输入图像类型。支持 CV_8U、CV_16U 和 CV_32F 单通道和四通道图像。
dstType输出图像类型。目前仅支持与 src 相同的类型。
kernel滤波器系数的二维数组。
锚点锚点。默认值 Point(-1, -1) 表示锚点位于卷积核中心。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。
参见
filter2D

◆ createMorphologyFilter()

Ptr< Filter > cv::cuda::createMorphologyFilter ( int op,
int srcType,
InputArray kernel,
Point anchor = Point(-1, -1),
int iterations = 1 )

#include <opencv2/cudafilters.hpp>

创建一个二维形态学滤波器。

参数
op形态学运算的类型。可能的类型如下:
  • MORPH_ERODE 腐蚀
  • MORPH_DILATE 膨胀
  • MORPH_OPEN 开运算
  • MORPH_CLOSE 闭运算
  • MORPH_GRADIENT 形态梯度
  • MORPH_TOPHAT “顶帽”
  • MORPH_BLACKHAT “黑帽”
srcType输入/输出图像类型。仅支持 CV_8UC1、CV_8UC4、CV_32FC1 和 CV_32FC4。
kernel形态学运算的二维 8 位结构元素。
锚点结构元素内的锚点位置。负值表示锚点位于中心。
iterations应用腐蚀和膨胀的次数。
参见
morphologyEx

◆ createRowSumFilter()

Ptr< Filter > cv::cuda::createRowSumFilter ( int srcType,
int dstType,
int ksize,
int anchor = -1,
int borderMode = BORDER_DEFAULT,
标量 borderVal = Scalar::all(0) )

#include <opencv2/cudafilters.hpp>

创建一个水平一维盒式滤波器。

参数
srcType输入图像类型。目前仅支持 CV_8UC1 类型。
dstType输出图像类型。目前仅支持 CV_32FC1 类型。
ksize卷积核大小。
锚点锚点。默认值 (-1) 表示锚点位于卷积核中心。
边界模式像素外推方法。详情请参阅 borderInterpolate。
borderVal默认边界值。

◆ createScharrFilter()

Ptr< Filter > cv::cuda::createScharrFilter ( int srcType,
int dstType,
int dx,
int dy,
双精度浮点数 scale = 1,
int rowBorderMode = BORDER_DEFAULT,
int columnBorderMode = -1 )

#include <opencv2/cudafilters.hpp>

创建一个垂直或水平Scharr算子。

参数
srcType源图像类型。
dstType目标数组类型。
dxx 方向导数的阶数。
dyy 方向导数的阶数。
scale计算的导数值的可选比例因子。默认情况下,不应用缩放。详情请参阅 getDerivKernels。
rowBorderMode垂直方向的像素外推方法。详情请参阅 borderInterpolate。
columnBorderMode水平方向的像素外推方法。
参见
Scharr

◆ createSeparableLinearFilter()

Ptr< Filter > cv::cuda::createSeparableLinearFilter ( int srcType,
int dstType,
InputArray rowKernel,
InputArray columnKernel,
Point anchor = Point(-1,-1),
int rowBorderMode = BORDER_DEFAULT,
int columnBorderMode = -1 )

#include <opencv2/cudafilters.hpp>

创建一个可分离线性滤波器。支持就地处理。

参数
srcType源数组类型。
dstType目标数组类型。
rowKernel水平滤波器系数。支持大小 <= 32 的卷积核。noArray() 支持忽略行滤波。
columnKernel垂直滤波器系数。支持大小 <= 32 的卷积核。noArray() 支持忽略列滤波。
锚点卷积核内的锚点位置。负值表示锚点位于光圈中心。
rowBorderMode垂直方向的像素外推方法。详情请参阅 borderInterpolate。
columnBorderMode水平方向的像素外推方法。
参见
sepFilter2D

◆ createSobelFilter()

Ptr< Filter > cv::cuda::createSobelFilter ( int srcType,
int dstType,
int dx,
int dy,
int ksize = 3,
双精度浮点数 scale = 1,
int rowBorderMode = BORDER_DEFAULT,
int columnBorderMode = -1 )

#include <opencv2/cudafilters.hpp>

创建一个Sobel算子。

参数
srcType源图像类型。
dstType目标数组类型。
dx关于 x 的导数阶数。
dy关于 y 的导数阶数。
ksize扩展 Sobel 卷积核的大小。可能的值为 1、3、5 或 7。
scale计算的导数值的可选比例因子。默认情况下,不应用缩放。详情请参阅 getDerivKernels。
rowBorderMode垂直方向的像素外推方法。详情请参阅 borderInterpolate。
columnBorderMode水平方向的像素外推方法。
参见
Sobel算子