EdgeDetection
- Last UpdatedNov 25, 2021
- 1 minute read
The moment at which the edge detection criteria is met. Valid values are:
|
Value |
Description |
|---|---|
|
-1 |
No edge detection. |
|
0 |
None. Returns all rows that successfully meet the criteria; no edge detection is implemented at the specified resolution. |
|
1 |
Leading. Returns only rows that are the first to successfully meet the criteria (return true) after a row did not successfully meet the criteria (returned false). |
|
2 |
Trailing. Returns only rows that are the first to fail the criteria (return false) after a row successfully met the criteria (returned true). |
|
3 |
Both. All rows satisfying both the leading and trailing conditions are returned. |