1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

Merge pull request #25349 from gursimarsingh:videocapture_samples_cpp

combined videocapture and videowriter samples  for cleanup
This commit is contained in:
Gursimar Singh
2024-10-28 12:27:54 +05:30
committed by GitHub
parent 331d327760
commit f217656916
8 changed files with 212 additions and 299 deletions
+6 -3
View File
@@ -710,9 +710,12 @@ namespace internal { class VideoCapturePrivateAccessor; }
The class provides C++ API for capturing video from cameras or for reading video files and image sequences.
Here is how the class can be used:
@include samples/cpp/snippets/videocapture_basic.cpp
@note
- (C++) A basic sample on using the %VideoCapture interface can be found at
`OPENCV_SOURCE_CODE/samples/cpp/videocapture_starter.cpp`
`OPENCV_SOURCE_CODE/samples/cpp/videocapture_combined.cpp`
- (Python) A basic sample on using the %VideoCapture interface can be found at
`OPENCV_SOURCE_CODE/samples/python/video.py`
- (Python) A multi threaded video processing sample can be found at
@@ -979,8 +982,8 @@ class IVideoWriter;
Check @ref tutorial_video_write "the corresponding tutorial" for more details
*/
/** @example samples/cpp/videowriter_basic.cpp
An example using VideoWriter class
/** @example samples/cpp/videowriter.cpp
An example using VideoCapture and VideoWriter class
*/
/** @brief Video writer class.