Documentation ¶
Index ¶
- func Canny(dst *image.Gray, src image.Image) error
- func DifferenceOfGaussians(dst *image.Gray, src image.Image, sd0, sd1 float64)
- func LaplacianOfGaussian(dst *image.Gray, src image.Image)
- func Prewitt(mag, dir *image.Gray, src image.Image) error
- func Scharr(mag, dir *image.Gray, src image.Image) error
- func Sobel(mag, dir *image.Gray, src image.Image) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Canny ¶
Canny detects and returns edges from the given image. Each dst pixel is given one of three values:
0xff: an edge 0x80: possibly an edge 0x00: not an edge
func DifferenceOfGaussians ¶
DifferenceOfGaussians produces the difference of Gaussians sd0 and sd1.
func LaplacianOfGaussian ¶
LaplacianOfGaussian approximates a 2D laplacian of gaussian with a convolution kernel.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.