edge_sobel(src, kernel_size, scale, delta, invert)ΒΆ
Find edges using Sobel filter
Inputs
| name | type | default | description |
|---|---|---|---|
| src | image | Source image | |
| kernel_size | int | 3 | Higher increases sensitivity. Must be one of 1, 3, 5 or 7. |
| scale | float | 1.000 | Scale factor for the computed derivative values |
| delta | float | 0.000 | Delta value that is added to the results prior to storing them. |
| invert | bool | false | Invert the results |
Outputs
| name | type | default | description |
|---|---|---|---|
| dst | image | Destination image |