Documentation
¶
Index ¶
Constants ¶
View Source
const ( HORIZONTAL direction = iota VERTICAL )
Variables ¶
View Source
var SOBEL_X = []float64{1, 0, -1, 2, 0, -2, 1, 0, -1} // matrix values for sobel filter (x-component)
View Source
var SOBEL_Y = []float64{1, 2, 1, 0, 0, 0, -1, -2, -1} // matrix values for sobel filter (y-component)
Functions ¶
func CannyEdgeDetect ¶
func GrayImageFromGrayPixels ¶
GrayImageFromGrayPixels takes pixel information from the given two-dimensional array and creates a corresponding image.
Types ¶
Click to show internal directories.
Click to hide internal directories.