Reputation: 21
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.
Upvotes: 1
Views: 299