Modules in cv2.pyd
How can I get the list of installed modules in cv2 interface. Exactly, I want to know if cuda based modules are installed in cv2.pyd
Thanks
Asked: 2015-09-17 06:10:36 -0600
Seen: 667 times
Last updated: Sep 17 '15
try a
>>> help(cv2)
(but no, you won't find anything cuda/ocl related there atm. you still need to do that from c++, not python)