|
MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
|
| MAYAFLUX_API void MayaFlux::Kinesis::Vision::canny | ( | std::span< const float > | gray, |
| std::span< float > | dst, | ||
| uint32_t | w, | ||
| uint32_t | h, | ||
| float | sigma, | ||
| float | low_threshold, | ||
| float | high_threshold | ||
| ) |
Canny edge detector writing into a caller-supplied buffer.
| gray | Input span, size w * h. |
| dst | Output span, size >= w * h. Binary: 1.0f on edges. |
| w | Image width in pixels. |
| h | Image height in pixels. |
| sigma | Gaussian pre-blur sigma. 0.0f skips blur. |
| low_threshold | Hysteresis low threshold in [0, 1]. |
| high_threshold | Hysteresis high threshold in [0, 1]. |
Definition at line 233 of file Gradient.cpp.
References canny(), h, and sigma.
Here is the call graph for this function: