canny

Perform canny filtering on an image to expose edges.

Convenience function to call canny with same lower and upper threshold values, similar to dcv.imgproc.threshold.threshold.

  1. Slice!(Contiguous, [2], V*) canny(Slice!(kind, [2], T*) slice, T lowThresh, T upThresh, EdgeKernel edgeKernelType = EdgeKernel.SOBEL, Slice!(Contiguous, [2], V*) prealloc = emptySlice!([2], V), TaskPool pool = taskPool)
  2. Slice!(Contiguous, [2], V*) canny(Slice!(kind, [2], T*) slice, T thresh, EdgeKernel edgeKernelType = EdgeKernel.SOBEL, Slice!(Contiguous, [2], V*) prealloc = emptySlice!([2], V))
    Slice!(Contiguous, [2], V*)
    canny
    (
    V
    T
    SliceKind kind
    )
    (
    Slice!(kind, [2], T*) slice
    ,,,
    Slice!(Contiguous, [2], V*) prealloc = emptySlice!([2], V)
    )

Meta