[][src]Module simplecv::filter

2D filters for image processing.

Re-exports

pub use canny::canny_edge;
pub use canny::canny_edge_;

Modules

canny

Canny's edge detector

Enums

BorderType

Representing the border type for filters.

Functions

border_interpolate

Compute the source location of the outside point.

filter

Apply a linear filter to the source image.

filter_

Apply a linear filter to the source image.

gaussian_kernel_generator

Generate a Gaussian kernel with the simplest method.

gaussian_smooth

Smooth the image with a gaussian kernel.

gaussian_smooth_

Smooth the image with a gaussian kernel.

mean_smooth

Smooth the image with a mean kernel.

mean_smooth_

Smooth the image with a mean kernel.

sobel

Sobel operator implementation.

sobel_

Sobel operator implementation.

sobel_norm

Get the norm of image processed by a Sobel operation.