Expand description
Common convolution kernels and traits to aid in the building of kernels
Structs§
- BoxLinear
Filter - The box linear filter is roughly defined as
1/(R*C)*Array2::ones((R, C))
This filter will be a box linear for every colour channel provided - Gaussian
Filter - Builds a Gaussian kernel taking the covariance as a parameter. Covariance is given as 2 values for the x and y variance.
- Laplace
Filter - Create a Laplacian filter, this provides the 2nd spatial derivative of an image.
- Sobel
Filter - Builder to create either a horizontal or vertical Sobel filter for the Sobel operator
Enums§
- Laplace
Type - Specifies the type of Laplacian filter
- Orientation
- Orientation of the filter
Traits§
- Fixed
Dimension Kernel Builder - Create a kernel with a fixed dimension
- Kernel
Builder - Builds a convolutioon kernel given a shape and optional parameters