add keywords for all nodes

This commit is contained in:
2026-04-04 14:58:56 -07:00
parent 69f1d1bebd
commit a0d3b22f18
195 changed files with 437 additions and 198 deletions

View File

@@ -20,11 +20,11 @@ Detect edges or corners in a surface using Canny edge detection or Harris corner
| Name | Type | Default | Description |
|------|------|---------|-------------|
| method | dropdown | canny | Detection method: canny (edges) or harris (corners) |
| sigma | FLOAT | 1.0 | Gaussian smoothing sigma in pixels (0.120.0) |
| low_threshold | FLOAT | 0.1 | Canny low hysteresis threshold (01) |
| high_threshold | FLOAT | 0.2 | Canny high hysteresis threshold (01) |
| harris_k | FLOAT | 0.05 | Harris detector sensitivity parameter (0.010.5) |
| min_distance | INT | 5 | Minimum distance between detected corners in pixels (1100) |
| sigma | FLOAT | 1.0 | Gaussian smoothing sigma in pixels (0.1-20.0) |
| low_threshold | FLOAT | 0.1 | Canny low hysteresis threshold (0-1) |
| high_threshold | FLOAT | 0.2 | Canny high hysteresis threshold (0-1) |
| harris_k | FLOAT | 0.05 | Harris detector sensitivity parameter (0.01-0.5) |
| min_distance | INT | 5 | Minimum distance between detected corners in pixels (1-100) |
## Notes