edge_canny(src, kernel_size, threshold_low, threshold_high, invert)ΒΆ
Canny edge detection filter
Inputs
| name | type | default | description |
|---|---|---|---|
| src | image | Source image | |
| kernel_size | int | 3 | Kernel size for the sobel operator |
| threshold_low | float | 25.000 | First threshold for the hysteresis procedure |
| threshold_high | float | 50.000 | Second threshold for the hysteresis procedure |
| invert | bool | false | Invert the results |
Outputs
| name | type | default | description |
|---|---|---|---|
| dst | image | Destination image |