OpenCV 3.0 now uses T-API (Transparent API), see:
https://github.com/Itseez/opencv/wiki/Opencv3
it does not need to specify
cv::ocl::Canny
,cv::gpu::Canny
etc;cv::Canny
just works on both CPU and GPU.
And this is an example:
http://www.learnopencv.com/opencv-transparent-api/
My question is:
This works with OpenCV with Python? Can anyone give me an example?