1 | initial version |
did you put the opencv-dlls on the PATH env var ? the prebuilt cv2.pyd is statically linked ( containing all opencv functionality ) , your build probably is not, and thus depends on the opencv-dlls.
you actually only need the cv2.pyd file in your Python27\Lib\site-packages folder. the cv2.pdb file contains the debugging information ( might come handy, if you need [remote] debugging )
2 | No.2 Revision |
did you put the opencv-dlls on the PATH env var ? the prebuilt cv2.pyd is statically linked ( containing all opencv functionality ) , your build probably is not, and thus depends on the opencv-dlls.
if you need a static build yourself, just rerun cmake with -D BUILD_SHARED_LIBS=OFF and recompile opencv.
you actually only need the cv2.pyd file in your Python27\Lib\site-packages folder. the cv2.pdb file contains the debugging information ( might come handy, if you need [remote] debugging )