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
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: Sep 17 '15
Seen: 556 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)