Changes between Version 20 and Version 21 of Docs/825gen2/Dev/Devices/USB/Webcams
- Timestamp:
- 03/12/25 07:06:34 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/Devices/USB/Webcams
v20 v21 59 59 To capture an image from an app a **system** call could be used to perform the above command line. However, it is better to use the gstreamer library within the code. An example function to capture an image follows: 60 60 61 {{{ 61 {{{#!c++ 62 62 void WebCamCapture(const char* writePath) 63 63 { … … 93 93 Following is an example function to display live video for the specified number of seconds: 94 94 95 {{{ 95 {{{#!c++ 96 96 void WebCamDisplayVideo(int seconds) 97 97 {