I am trying to capture images from webcam using opencv. When i call cvQueryFrame() the image is read and the cam starts. I want cam to stop because it will be used by 开发者_如何学Pythonother application.
Can anyone help me with this?
Thanks a lot.
Isn't cvReleaseCapture() working ?
I would just stop the frame query, (stop the loop you use to capture frame) and then simply release the capture... Is it what you are searching for ? Here is the documentation
精彩评论