Reputation: 401
I want to create a GUI application which will access the local webcam and provide a feature of taking the snapshot from the stream . I want to develop this application using C/python . can anyone tell me how can I access my local webcam.
Upvotes: 1
Views: 446
Reputation: 93964
In Linux, you can use v4l2 by which you can get the full control of your webcam.
Upvotes: 0
Reputation: 21
You can try VideoCapture, it is "A Win32 Python Extension for Accessing Video Devices".
Upvotes: 0
Reputation: 11585
You can use OpenCV which has Python bindings to capture webcam streams.
Upvotes: 2