I followed these instructions to install opencv for python (i.e. copying the pyd file into site-packages). It works fine, except opencv cannot open any video files I try to open:
capture = cv2.VideoCapture("some_file.avi")
capture.isOpened() # False
I tried videos with h264 and mpeg2 encodings without success. Windows 7 x64, 32bit Python 2.7.5 and opencv 2.4.7. So that presumably means that opencv cannot find the right codecs, but I made sure that opencv_ffmpeg247.dll
is in the path.