Ask Your Question

n.jmurov's profile - activity

2016-08-10 11:04:51 -0600 commented question Cannot import any contrib modules in Python

OK thanks - I didn't know about static linking. I don't believe I saw it mentioned in any of OpenCV installation tutorials.

2016-08-10 10:53:35 -0600 commented question Cannot import any contrib modules in Python

"the folder with the opencv dlls on the PATH" - They are on the PATH already.

2016-08-10 10:31:05 -0600 commented question Cannot import any contrib modules in Python

It looks like it was indeed picking up cv2.pyd that was left from a previous installation (without contrib modules). What should I do now? I've tried replacing the old cv2.pyd with the new one but now I'm getting 'DLL load failed'.

2016-08-10 09:56:24 -0600 commented question Cannot import any contrib modules in Python

Sorry for a silly question - which file would contain CMake output? I used CMake GUI.

2016-08-10 09:15:02 -0600 asked a question Cannot import any contrib modules in Python

I'm trying to build OpenCV on my desktop with contrib modules after having successfully built it on my laptop. As far as I can tell, all the .dll's for the contrib modules get generated and in general, I cannot find any differences in the file structure on both machines. Yet on the desktop, I cannot import any contrib modules and when I run cv2.getBuildInformation, the contrib modules are not in the list of modules to be built.

OpenCV 3.1.0, Windows 7, Python 2.7.11

Thank you.