Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python and gpu OpenCV functions

Tags:

python

opencv

gpu

I want to know if it is possible to use opencv gpu functions like those from here? Or I have to wrap it into python class.

like image 253
Katsu Avatar asked Aug 31 '13 20:08

Katsu


People also ask

Does OpenCV work on GPU?

OpenCV library can be used for both CPU and GPU.

How do I enable GPU in Python?

Installation: First, make sure that Nvidia drivers are upto date also you can install cudatoolkit explicitly from here. then install Anaconda add anaconda to the environment while installing. After completion of all the installations run the following commands in the command prompt.


1 Answers

Right now OpenCV 2.4.7 doesn't support the GPU module on OpenCV-Python.

That means that you must write wrappers yourself.

like image 182
karlphillip Avatar answered Oct 07 '22 13:10

karlphillip