Image Stitching with cv2.cuda()
Hi all, I have tried image stitching with opencv (followed https://www.pyimagesearch.com/2016/01... this tutorial) and it's working good.Now I brought Nvidia GEFORCE GTX 1660 gpu and installed cuda drivers.Now I'm trying to perform video stitching with cuda support.
descriptor = cv2.xfeatures2d.SIFT_create()
(kps, features) = descriptor.detectAndCompute(image, None)
Is it work on cuda?
As far as I know SIFT is not available for CUDA. But you can try SURF or ORB ... Also note that SIFT and SURF are patented and non-free.
don't forget to rebuild the opencv libs/cv2 with cuda support
Here is link pyimagesearck for Nvida How to use Nvida And Nvidia. the first link, scroll down how to install Nvidia.
Thnaks for efforts