ARM-software / ComputeLibrary

The Compute Library is a set of computer vision and machine learning functions optimised for both Arm CPUs and GPUs using SIMD technologies.
MIT License
2.82k stars 774 forks source link

why CLCannyEdge and NECannyEdge is removed from the new ACL version ? #1058

Closed lovelypp777 closed 1 year ago

lovelypp777 commented 1 year ago

I noticed that in the older version of ACL, this canny edge detection help class, but after v20.11, it is removed totally. I think canny is so usual. I don't know why and what's the replacement of it, thanks!

morgolock commented 1 year ago

Hi @lovelypp777

In 20.11 we decided that the library's focus should machine learning and deprecated most of the computer vision functions and kernels. In 21.05 we removed the CV functions and kernels from the library.

I'd suggest looking into OpenCV for an alternative implementation of Canny Edge for ARM, see more details in https://opencv.org/arm/

Hope this helps.