Does anybody know what the command to release a VideoWriter object in python is?
In my code I import the following:
import cv2
import cv2.cv as cv
The documentation I can find does not say how to release the videoObject using cv2 or python at all. That is the documentation for OpenCV 2.4.5.0.
I've tried
cv.ReleaseVideoWriter(videoWriter)
and other random combinations using cv2 and cv. Nothing seems to work.
Thanks!