ShaharMS / Vision

Cross framework, cross platform computer vision for Haxe
MIT License
35 stars 5 forks source link

With HoughLines: switch to canny edge detection #3

Closed ShaharMS closed 2 years ago

ShaharMS commented 2 years ago
        var edges = sobelEdgeDetection(image.clone(), threshold); //TODO: switch to canny edge detection

https://github.com/ShaharMS/Vision/blob/4d732b0669f1ca58787af778651d43291329b6e8/src/vision/Vision.hx#L124

ShaharMS commented 2 years ago

Progress: canny edge detection implemented, just needs some tweaks and it's done

ShaharMS commented 2 years ago

Done