Put sobel as default edge filter

Default should be archetypal and efficient filter
This commit is contained in:
Bruno Herbelin
2022-06-05 10:19:56 +02:00
parent f8e8d33c61
commit d2e3b854aa
2 changed files with 6 additions and 6 deletions

View File

@@ -176,9 +176,9 @@ public:
// Algorithms used for edge detection
typedef enum {
EDGE_THRESHOLD = 0,
EDGE_SOBEL,
EDGE_SOBEL = 0,
EDGE_FREICHEN,
EDGE_THRESHOLD,
EDGE_CONTOUR,
EDGE_INVALID
} EdgeMethod;