Hi,
First of all, sorry if I am asking something very obvious, but after a long search, I haven't found anything.
I am porting an old project from OpenCV 2 to OpenCV 3, but I don't know how to port cv::gpu::bilateralFilter
. For performance purposes, I need to use a gpu bilateral filter function, but I cannot see anything similar. For the moment I am using cv::bilateralFilter
, but I am afraid this is not using gpu.
Also, I found cv::cuda::bilateralFilter
here (docs.opencv.org/trunk/d0/d05/group__cudaimgproc.html), but it is not something callable from the last version in the OpenCV repository code (with CUDA enabled).
Thanks in advance! :)