Faster OpenCV remap

245 Views Asked by At

I am using remap function to undistort openCV image in C++ as following

remap(srcImg, dstImg, map1, map2, INTER_LINEAR, BORDER_CONSTANT);

It takes a lot of time.

Is there is a way I can increase its speed? I tried using Intel remap but did not know how to using with openCV image.

0

There are 0 best solutions below