Coverage Report

Created: 2026-05-16 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/install-coverage/include/opencv4/opencv2/videoio.hpp
Line
Count
Source
1
/*M///////////////////////////////////////////////////////////////////////////////////////
2
//
3
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4
//
5
//  By downloading, copying, installing or using the software you agree to this license.
6
//  If you do not agree to this license, do not download, install,
7
//  copy or use the software.
8
//
9
//
10
//                          License Agreement
11
//                For Open Source Computer Vision Library
12
//
13
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
14
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
15
// Third party copyrights are property of their respective owners.
16
//
17
// Redistribution and use in source and binary forms, with or without modification,
18
// are permitted provided that the following conditions are met:
19
//
20
//   * Redistribution's of source code must retain the above copyright notice,
21
//     this list of conditions and the following disclaimer.
22
//
23
//   * Redistribution's in binary form must reproduce the above copyright notice,
24
//     this list of conditions and the following disclaimer in the documentation
25
//     and/or other materials provided with the distribution.
26
//
27
//   * The name of the copyright holders may not be used to endorse or promote products
28
//     derived from this software without specific prior written permission.
29
//
30
// This software is provided by the copyright holders and contributors "as is" and
31
// any express or implied warranties, including, but not limited to, the implied
32
// warranties of merchantability and fitness for a particular purpose are disclaimed.
33
// In no event shall the Intel Corporation or contributors be liable for any direct,
34
// indirect, incidental, special, exemplary, or consequential damages
35
// (including, but not limited to, procurement of substitute goods or services;
36
// loss of use, data, or profits; or business interruption) however caused
37
// and on any theory of liability, whether in contract, strict liability,
38
// or tort (including negligence or otherwise) arising in any way out of
39
// the use of this software, even if advised of the possibility of such damage.
40
//
41
//M*/
42
43
#ifndef OPENCV_VIDEOIO_HPP
44
#define OPENCV_VIDEOIO_HPP
45
46
#include "opencv2/core.hpp"
47
48
/**
49
  @defgroup videoio Video I/O
50
51
  @brief Read and write video or images sequence with OpenCV
52
53
  ### See also:
54
  - @ref videoio_overview
55
  - Tutorials: @ref tutorial_table_of_content_app
56
  @{
57
    @defgroup videoio_flags_base Flags for video I/O
58
    @defgroup videoio_flags_others Additional flags for video I/O API backends
59
    @defgroup videoio_hwaccel Hardware-accelerated video decoding and encoding
60
    @defgroup videoio_c C API for video I/O
61
    @defgroup videoio_ios iOS glue for video I/O
62
    @defgroup videoio_winrt WinRT glue for video I/O
63
    @defgroup videoio_registry Query I/O API backends registry
64
  @}
65
*/
66
67
////////////////////////////////// video io /////////////////////////////////
68
69
namespace cv
70
{
71
72
//! @addtogroup videoio
73
//! @{
74
75
//! @addtogroup videoio_flags_base
76
//! @{
77
78
79
/** @brief cv::VideoCapture API backends identifier.
80
81
Select preferred API for a capture object.
82
To be used in the VideoCapture::VideoCapture() constructor or VideoCapture::open()
83
84
@note
85
-   Backends are available only if they have been built with your OpenCV binaries.
86
See @ref videoio_overview for more information.
87
-   Microsoft Media Foundation backend tries to use hardware accelerated transformations
88
if possible. Environment flag "OPENCV_VIDEOIO_MSMF_ENABLE_HW_TRANSFORMS" set to 0
89
disables it and may improve initialization time. More details:
90
https://learn.microsoft.com/en-us/windows/win32/medfound/mf-readwrite-enable-hardware-transforms
91
*/
92
enum VideoCaptureAPIs {
93
       CAP_ANY          = 0,            //!< Auto detect == 0
94
       CAP_VFW          = 200,          //!< Video For Windows (obsolete, removed)
95
       CAP_V4L          = 200,          //!< V4L/V4L2 capturing support
96
       CAP_V4L2         = CAP_V4L,      //!< Same as CAP_V4L
97
       CAP_FIREWIRE     = 300,          //!< IEEE 1394 drivers
98
       CAP_FIREWARE     = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
99
       CAP_IEEE1394     = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
100
       CAP_DC1394       = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
101
       CAP_CMU1394      = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
102
       CAP_QT           = 500,          //!< QuickTime (obsolete, removed)
103
       CAP_UNICAP       = 600,          //!< Unicap drivers (obsolete, removed)
104
       CAP_DSHOW        = 700,          //!< DirectShow (via videoInput)
105
       CAP_PVAPI        = 800,          //!< PvAPI, Prosilica GigE SDK
106
       CAP_OPENNI       = 900,          //!< OpenNI (for Kinect)
107
       CAP_OPENNI_ASUS  = 910,          //!< OpenNI (for Asus Xtion)
108
       CAP_ANDROID      = 1000,         //!< MediaNDK (API Level 21+) and NDK Camera (API level 24+) for Android
109
       CAP_XIAPI        = 1100,         //!< XIMEA Camera API
110
       CAP_AVFOUNDATION = 1200,         //!< AVFoundation framework for iOS (OS X Lion will have the same API)
111
       CAP_GIGANETIX    = 1300,         //!< Smartek Giganetix GigEVisionSDK
112
       CAP_MSMF         = 1400,         //!< Microsoft Media Foundation (via videoInput). See platform specific notes above.
113
       CAP_WINRT        = 1410,         //!< Microsoft Windows Runtime using Media Foundation
114
       CAP_INTELPERC    = 1500,         //!< RealSense (former Intel Perceptual Computing SDK)
115
       CAP_REALSENSE    = 1500,         //!< Synonym for CAP_INTELPERC
116
       CAP_OPENNI2      = 1600,         //!< OpenNI2 (for Kinect)
117
       CAP_OPENNI2_ASUS = 1610,         //!< OpenNI2 (for Asus Xtion and Occipital Structure sensors)
118
       CAP_OPENNI2_ASTRA= 1620,         //!< OpenNI2 (for Orbbec Astra)
119
       CAP_GPHOTO2      = 1700,         //!< gPhoto2 connection
120
       CAP_GSTREAMER    = 1800,         //!< GStreamer
121
       CAP_FFMPEG       = 1900,         //!< Open and record video file or stream using the FFMPEG library
122
       CAP_IMAGES       = 2000,         //!< OpenCV Image Sequence (e.g. img_%02d.jpg)
123
       CAP_ARAVIS       = 2100,         //!< Aravis SDK
124
       CAP_OPENCV_MJPEG = 2200,         //!< Built-in OpenCV MotionJPEG codec
125
       CAP_INTEL_MFX    = 2300,         //!< Intel MediaSDK
126
       CAP_XINE         = 2400,         //!< XINE engine (Linux)
127
       CAP_UEYE         = 2500,         //!< uEye Camera API
128
       CAP_OBSENSOR     = 2600,         //!< For Orbbec 3D-Sensor device/module (Astra+, Femto, Astra2, Gemini2, Gemini2L, Gemini2XL, Gemini330, Femto Mega) attention: Astra2 cameras currently only support Windows and Linux kernel versions no higher than 4.15, and higher versions of Linux kernel may have exceptions.
129
     };
130
131
132
/** @brief cv::VideoCapture generic properties identifier.
133
134
 Reading / writing properties involves many layers. Some unexpected result might happens along this chain.
135
 Effective behaviour depends from device hardware, driver and API Backend.
136
 @sa videoio_flags_others, VideoCapture::get(), VideoCapture::set()
137
*/
138
enum VideoCaptureProperties {
139
       CAP_PROP_POS_MSEC       =0, //!< Current position of the video file in milliseconds.
140
       CAP_PROP_POS_FRAMES     =1, //!< 0-based index of the frame to be decoded/captured next. When the index i is set in RAW mode (CAP_PROP_FORMAT == -1) this will seek to the key frame k, where k <= i.
141
       CAP_PROP_POS_AVI_RATIO  =2, //!< Relative position of the video file: 0=start of the film, 1=end of the film.
142
       CAP_PROP_FRAME_WIDTH    =3, //!< Width of the frames in the video stream.
143
       CAP_PROP_FRAME_HEIGHT   =4, //!< Height of the frames in the video stream.
144
       CAP_PROP_FPS            =5, //!< Frame rate.
145
       CAP_PROP_FOURCC         =6, //!< 4-character code of codec. see VideoWriter::fourcc .
146
       CAP_PROP_FRAME_COUNT    =7, //!< Number of frames in the video file.
147
       CAP_PROP_FORMAT         =8, //!< Format of the %Mat objects (see Mat::type()) returned by VideoCapture::retrieve().
148
                                   //!< Set value -1 to fetch undecoded RAW video streams (as Mat 8UC1). Default is 8UC3. FFmpeg backend supports 8UC4 with alpha, if it's available.
149
       CAP_PROP_MODE           =9, //!< Backend-specific value indicating the current capture mode.
150
       CAP_PROP_BRIGHTNESS    =10, //!< Brightness of the image (only for those cameras that support).
151
       CAP_PROP_CONTRAST      =11, //!< Contrast of the image (only for cameras).
152
       CAP_PROP_SATURATION    =12, //!< Saturation of the image (only for cameras).
153
       CAP_PROP_HUE           =13, //!< Hue of the image (only for cameras).
154
       CAP_PROP_GAIN          =14, //!< Gain of the image (only for those cameras that support).
155
       CAP_PROP_EXPOSURE      =15, //!< Exposure (only for those cameras that support).
156
       CAP_PROP_CONVERT_RGB   =16, //!< Boolean flags indicating whether images should be converted to BGR. <br/>
157
                                   //!< *GStreamer note*: The flag is ignored in case if custom pipeline is used. It's user responsibility to interpret pipeline output.
158
       CAP_PROP_WHITE_BALANCE_BLUE_U =17, //!< Currently unsupported.
159
       CAP_PROP_RECTIFICATION =18, //!< Rectification flag for stereo cameras (note: only supported by DC1394 v 2.x backend currently).
160
       CAP_PROP_MONOCHROME    =19,
161
       CAP_PROP_SHARPNESS     =20,
162
       CAP_PROP_AUTO_EXPOSURE =21, //!< DC1394: exposure control done by camera, user can adjust reference level using this feature.
163
       CAP_PROP_GAMMA         =22,
164
       CAP_PROP_TEMPERATURE   =23,
165
       CAP_PROP_TRIGGER       =24,
166
       CAP_PROP_TRIGGER_DELAY =25,
167
       CAP_PROP_WHITE_BALANCE_RED_V =26,
168
       CAP_PROP_ZOOM          =27, //!< Android: May switch physical cameras/lenses. Factor and range are hardware-dependent.
169
       CAP_PROP_FOCUS         =28,
170
       CAP_PROP_GUID          =29,
171
       CAP_PROP_ISO_SPEED     =30,
172
       CAP_PROP_BACKLIGHT     =32,
173
       CAP_PROP_PAN           =33,
174
       CAP_PROP_TILT          =34,
175
       CAP_PROP_ROLL          =35,
176
       CAP_PROP_IRIS          =36,
177
       CAP_PROP_SETTINGS      =37, //!< Pop up video/camera filter dialog (note: only supported by DSHOW backend currently. The property value is ignored)
178
       CAP_PROP_BUFFERSIZE    =38,
179
       CAP_PROP_AUTOFOCUS     =39,
180
       CAP_PROP_SAR_NUM       =40, //!< Sample aspect ratio: num/den (num)
181
       CAP_PROP_SAR_DEN       =41, //!< Sample aspect ratio: num/den (den)
182
       CAP_PROP_BACKEND       =42, //!< Current backend (enum VideoCaptureAPIs). Read-only property
183
       CAP_PROP_CHANNEL       =43, //!< Video input or Channel Number (only for those cameras that support)
184
       CAP_PROP_AUTO_WB       =44, //!< enable/ disable auto white-balance
185
       CAP_PROP_WB_TEMPERATURE=45, //!< white-balance color temperature
186
       CAP_PROP_CODEC_PIXEL_FORMAT =46,    //!< (read-only) codec's pixel format. 4-character code - see VideoWriter::fourcc . Subset of [AV_PIX_FMT_*](https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/raw.c) or -1 if unknown
187
       CAP_PROP_BITRATE       =47, //!< (read-only) Video bitrate in kbits/s
188
       CAP_PROP_ORIENTATION_META=48, //!< (read-only) Frame rotation defined by stream meta (applicable for FFmpeg and AVFoundation back-ends only)
189
       CAP_PROP_ORIENTATION_AUTO=49, //!< if true - rotates output frames of CvCapture considering video file's metadata  (applicable for FFmpeg and AVFoundation back-ends only) (https://github.com/opencv/opencv/issues/15499)
190
       CAP_PROP_HW_ACCELERATION=50, //!< (**open-only**) Hardware acceleration type (see #VideoAccelerationType). Setting supported only via `params` parameter in cv::VideoCapture constructor / .open() method. Default value is backend-specific.
191
       CAP_PROP_HW_DEVICE      =51, //!< (**open-only**) Hardware device index (select GPU if multiple available). Device enumeration is acceleration type specific.
192
       CAP_PROP_HW_ACCELERATION_USE_OPENCL=52, //!< (**open-only**) If non-zero, create new OpenCL context and bind it to current thread. The OpenCL context created with Video Acceleration context attached it (if not attached yet) for optimized GPU data copy between HW accelerated decoder and cv::UMat.
193
       CAP_PROP_OPEN_TIMEOUT_MSEC=53, //!< (**open-only**) timeout in milliseconds for opening a video capture (applicable for FFmpeg and GStreamer back-ends only)
194
       CAP_PROP_READ_TIMEOUT_MSEC=54, //!< (**open-only**) timeout in milliseconds for reading from a video capture (applicable for FFmpeg and GStreamer back-ends only)
195
       CAP_PROP_STREAM_OPEN_TIME_USEC =55, //!< (read-only) time in microseconds since Jan 1 1970 when stream was opened. Applicable for FFmpeg backend only. Useful for RTSP and other live streams
196
       CAP_PROP_VIDEO_TOTAL_CHANNELS = 56, //!< (read-only) Number of video channels
197
       CAP_PROP_VIDEO_STREAM = 57, //!< (**open-only**) Specify video stream, 0-based index. Use -1 to disable video stream from file or IP cameras. Default value is 0.
198
       CAP_PROP_AUDIO_STREAM = 58, //!< (**open-only**) Specify stream in multi-language media files, -1 - disable audio processing or microphone. Default value is -1.
199
       CAP_PROP_AUDIO_POS = 59, //!< (read-only) Audio position is measured in samples. Accurate audio sample timestamp of previous grabbed fragment. See CAP_PROP_AUDIO_SAMPLES_PER_SECOND and CAP_PROP_AUDIO_SHIFT_NSEC.
200
       CAP_PROP_AUDIO_SHIFT_NSEC = 60, //!< (read only) Contains the time difference between the start of the audio stream and the video stream in nanoseconds. Positive value means that audio is started after the first video frame. Negative value means that audio is started before the first video frame.
201
       CAP_PROP_AUDIO_DATA_DEPTH = 61, //!< (open, read) Alternative definition to bits-per-sample, but with clear handling of 32F / 32S
202
       CAP_PROP_AUDIO_SAMPLES_PER_SECOND = 62, //!< (open, read) determined from file/codec input. If not specified, then selected audio sample rate is 44100
203
       CAP_PROP_AUDIO_BASE_INDEX = 63, //!< (read-only) Index of the first audio channel for .retrieve() calls. That audio channel number continues enumeration after video channels.
204
       CAP_PROP_AUDIO_TOTAL_CHANNELS = 64, //!< (read-only) Number of audio channels in the selected audio stream (mono, stereo, etc)
205
       CAP_PROP_AUDIO_TOTAL_STREAMS = 65, //!< (read-only) Number of audio streams.
206
       CAP_PROP_AUDIO_SYNCHRONIZE = 66, //!< (open, read) Enables audio synchronization.
207
       CAP_PROP_LRF_HAS_KEY_FRAME = 67, //!< FFmpeg back-end only - Indicates whether the Last Raw Frame (LRF), output from VideoCapture::read() when VideoCapture is initialized with VideoCapture::open(CAP_FFMPEG, {CAP_PROP_FORMAT, -1}) or VideoCapture::set(CAP_PROP_FORMAT,-1) is called before the first call to VideoCapture::read(), contains encoded data for a key frame.
208
       CAP_PROP_CODEC_EXTRADATA_INDEX = 68, //!< Positive index indicates that returning extra data is supported by the video back end.  This can be retrieved as cap.retrieve(data, <returned index>).  E.g. When reading from a h264 encoded RTSP stream, the FFmpeg backend could return the SPS and/or PPS if available (if sent in reply to a DESCRIBE request), from calls to cap.retrieve(data, <returned index>).
209
       CAP_PROP_FRAME_TYPE = 69, //!< (read-only) FFmpeg back-end only - Frame type ascii code (73 = 'I', 80 = 'P', 66 = 'B' or 63 = '?' if unknown) of the most recently read frame.
210
       CAP_PROP_N_THREADS = 70, //!< (**open-only**) Set the maximum number of threads to use. Use 0 to use as many threads as CPU cores (applicable for FFmpeg back-end only).
211
       CAP_PROP_PTS = 71, //!<  (read-only) FFmpeg back-end only - presentation timestamp of the most recently read frame using the FPS time base.  e.g. fps = 25, VideoCapture::get(\ref CAP_PROP_PTS) = 3, presentation time = 3/25 seconds.
212
       CAP_PROP_DTS_DELAY = 72, //!<  (read-only) FFmpeg back-end only - maximum difference between presentation (pts) and decompression timestamps (dts) using FPS time base.  e.g. delay is maximum when frame_num = 0, if true, VideoCapture::get(\ref CAP_PROP_PTS) = 0 and VideoCapture::get(\ref CAP_PROP_DTS_DELAY) = 2, dts = -2.  Non zero values usually imply the stream is encoded using B-frames which are not decoded in presentation order.
213
       CAP_PROP_IMAGE_SEQ_START = 73, //!< (**open-only**) Start number for image sequences opened with a printf-style pattern (e.g. `frame_%05d.dpx`). Sets the initial frame number and disables automatic first-frame detection. Applicable to \ref CAP_FFMPEG (passed as the image2 demuxer `start_number`) and \ref CAP_IMAGES backends. Default: not set (automatic detection).
214
#ifndef CV_DOXYGEN
215
       CV__CAP_PROP_LATEST
216
#endif
217
     };
218
219
/** @brief cv::VideoWriter generic properties identifier.
220
 @sa VideoWriter::get(), VideoWriter::set()
221
*/
222
enum VideoWriterProperties {
223
  VIDEOWRITER_PROP_QUALITY = 1,    //!< Current quality (0..100%) of the encoded videostream. Can be adjusted dynamically in some codecs.
224
  VIDEOWRITER_PROP_FRAMEBYTES = 2, //!< (Read-only): Size of just encoded video frame. Note that the encoding order may be different from representation order.
225
  VIDEOWRITER_PROP_NSTRIPES = 3,   //!< Number of stripes for parallel encoding. -1 for auto detection.
226
  VIDEOWRITER_PROP_IS_COLOR = 4,   //!< If it is not zero, the encoder will expect and encode color frames, otherwise it
227
                                   //!< will work with grayscale frames.
228
  VIDEOWRITER_PROP_DEPTH = 5,      //!< Defaults to \ref CV_8U.
229
  VIDEOWRITER_PROP_HW_ACCELERATION = 6, //!< (**open-only**) Hardware acceleration type (see #VideoAccelerationType). Setting supported only via `params` parameter in VideoWriter constructor / .open() method. Default value is backend-specific.
230
  VIDEOWRITER_PROP_HW_DEVICE       = 7, //!< (**open-only**) Hardware device index (select GPU if multiple available). Device enumeration is acceleration type specific.
231
  VIDEOWRITER_PROP_HW_ACCELERATION_USE_OPENCL= 8, //!< (**open-only**) If non-zero, create new OpenCL context and bind it to current thread. The OpenCL context created with Video Acceleration context attached it (if not attached yet) for optimized GPU data copy between cv::UMat and HW accelerated encoder.
232
  VIDEOWRITER_PROP_RAW_VIDEO = 9, //!< (**open-only**) Set to non-zero to enable encapsulation of an encoded raw video stream. Each raw encoded video frame should be passed to VideoWriter::write() as single row or column of a \ref CV_8UC1 Mat. \note If the key frame interval is not 1 then it must be manually specified by the user. This can either be performed during initialization passing \ref VIDEOWRITER_PROP_KEY_INTERVAL as one of the extra encoder params  to \ref VideoWriter::VideoWriter(const String &, int, double, const Size &, const std::vector< int > &params) or afterwards by setting the \ref VIDEOWRITER_PROP_KEY_FLAG with \ref VideoWriter::set() before writing each frame. FFMpeg backend only.
233
  VIDEOWRITER_PROP_KEY_INTERVAL = 10, //!< (**open-only**) Set the key frame interval using raw video encapsulation (\ref VIDEOWRITER_PROP_RAW_VIDEO != 0). Defaults to 1 when not set. FFmpeg back-end only.
234
  VIDEOWRITER_PROP_KEY_FLAG = 11, //!< Set to non-zero to signal that the following frames are key frames or zero if not, when encapsulating raw video (\ref VIDEOWRITER_PROP_RAW_VIDEO != 0). FFmpeg back-end only.
235
  VIDEOWRITER_PROP_PTS = 12, //!< Specifies the frame presentation timestamp for each frame using the FPS time base. This property is **only** necessary when encapsulating **externally** encoded video where the decoding order differs from the presentation order, such as in GOP patterns with bi-directional B-frames. The value should be provided by your external encoder and for video sources with fixed frame rates it is equivalent to dividing the current frame's presentation time (\ref CAP_PROP_POS_MSEC) by the frame duration (1000.0 / VideoCapture::get(\ref CAP_PROP_FPS)). It can be queried from the resulting encapsulated video file using VideoCapture::get(\ref CAP_PROP_PTS). FFmpeg back-end only.
236
  VIDEOWRITER_PROP_DTS_DELAY = 13, //!< Specifies the maximum difference between presentation (pts) and decompression timestamps (dts) using the FPS time base. This property is necessary **only** when encapsulating **externally** encoded video where the decoding order differs from the presentation order, such as in GOP patterns with bi-directional B-frames. The value should be calculated based on the specific GOP pattern used during encoding. For example, in a GOP with presentation order IBP and decoding order IPB, this value would be 1, as the B-frame is the second frame presented but the third to be decoded. It can be queried from the resulting encapsulated video file using VideoCapture::get(\ref CAP_PROP_DTS_DELAY). Non-zero values usually imply the stream is encoded using B-frames. FFmpeg back-end only.
237
  VIDEOWRITER_PROP_COLOR_SPACE = 14, //!< (**open-only**) GStreamer backend only. Pixel format for the encoding profile. Default is "I420". Other values: "NV12", "BGRx". See GStreamer raw video formats for more options.
238
  VIDEOWRITER_PROP_ENABLE_ALPHA = 15, //!< (**open-only**) FFmpeg backend only. Defines that input frames contain alpha channel.
239
#ifndef CV_DOXYGEN
240
  CV__VIDEOWRITER_PROP_LATEST
241
#endif
242
};
243
244
//! @} videoio_flags_base
245
246
//! @addtogroup videoio_flags_others
247
//! @{
248
249
/** @name Hardware acceleration support
250
    @{
251
*/
252
253
/** @brief Video Acceleration type
254
 *
255
 * Used as value in #CAP_PROP_HW_ACCELERATION and #VIDEOWRITER_PROP_HW_ACCELERATION
256
 *
257
 * @note In case of FFmpeg backend, it translated to enum AVHWDeviceType (https://github.com/FFmpeg/FFmpeg/blob/master/libavutil/hwcontext.h)
258
 */
259
enum VideoAccelerationType
260
{
261
    VIDEO_ACCELERATION_NONE     =  0,  //!< Do not require any specific H/W acceleration, prefer software processing.
262
                                       //!< Reading of this value means that special H/W accelerated handling is not added or not detected by OpenCV.
263
264
    VIDEO_ACCELERATION_ANY      =  1,  //!< Prefer to use H/W acceleration. If no one supported, then fallback to software processing.
265
                                       //!< @note H/W acceleration may require special configuration of used environment.
266
                                       //!< @note Results in encoding scenario may differ between software and hardware accelerated encoders.
267
268
    VIDEO_ACCELERATION_D3D11    =  2,  //!< DirectX 11
269
    VIDEO_ACCELERATION_VAAPI    =  3,  //!< VAAPI
270
    VIDEO_ACCELERATION_MFX      =  4,  //!< libmfx (Intel MediaSDK/oneVPL)
271
    VIDEO_ACCELERATION_DRM       =  5,  //!< Raspberry Pi V4
272
};
273
274
//! @} Hardware acceleration support
275
276
/** @name IEEE 1394 drivers
277
    @{
278
*/
279
280
/** @brief Modes of the IEEE 1394 controlling registers
281
(can be: auto, manual, auto single push, absolute Latter allowed with any other mode)
282
every feature can have only one mode turned on at a time
283
*/
284
enum { CAP_PROP_DC1394_OFF                = -4, //!< turn the feature off (not controlled manually nor automatically).
285
       CAP_PROP_DC1394_MODE_MANUAL        = -3, //!< set automatically when a value of the feature is set by the user.
286
       CAP_PROP_DC1394_MODE_AUTO          = -2,
287
       CAP_PROP_DC1394_MODE_ONE_PUSH_AUTO = -1,
288
       CAP_PROP_DC1394_MAX                = 31
289
     };
290
291
//! @} IEEE 1394 drivers
292
293
/** @name OpenNI (for Kinect)
294
    @{
295
*/
296
297
//! OpenNI map generators
298
enum { CAP_OPENNI_DEPTH_GENERATOR = 1 << 31,
299
       CAP_OPENNI_IMAGE_GENERATOR = 1 << 30,
300
       CAP_OPENNI_IR_GENERATOR    = 1 << 29,
301
       CAP_OPENNI_GENERATORS_MASK = CAP_OPENNI_DEPTH_GENERATOR + CAP_OPENNI_IMAGE_GENERATOR + CAP_OPENNI_IR_GENERATOR
302
     };
303
304
//! Properties of cameras available through OpenNI backend
305
enum { CAP_PROP_OPENNI_OUTPUT_MODE       = 100,
306
       CAP_PROP_OPENNI_FRAME_MAX_DEPTH   = 101, //!< In mm
307
       CAP_PROP_OPENNI_BASELINE          = 102, //!< In mm
308
       CAP_PROP_OPENNI_FOCAL_LENGTH      = 103, //!< In pixels
309
       CAP_PROP_OPENNI_REGISTRATION      = 104, //!< Flag that synchronizes the remapping depth map to image map
310
                                                //!< by changing depth generator's view point (if the flag is "on") or
311
                                                //!< sets this view point to its normal one (if the flag is "off").
312
       CAP_PROP_OPENNI_REGISTRATION_ON   = CAP_PROP_OPENNI_REGISTRATION,
313
       CAP_PROP_OPENNI_APPROX_FRAME_SYNC = 105,
314
       CAP_PROP_OPENNI_MAX_BUFFER_SIZE   = 106,
315
       CAP_PROP_OPENNI_CIRCLE_BUFFER     = 107,
316
       CAP_PROP_OPENNI_MAX_TIME_DURATION = 108,
317
       CAP_PROP_OPENNI_GENERATOR_PRESENT = 109,
318
       CAP_PROP_OPENNI2_SYNC             = 110,
319
       CAP_PROP_OPENNI2_MIRROR           = 111
320
     };
321
322
#ifdef _MSC_VER
323
#pragma warning( push )
324
#pragma warning( disable: 5054 )
325
#endif
326
//! OpenNI shortcuts
327
enum { CAP_OPENNI_IMAGE_GENERATOR_PRESENT         = +CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT,
328
       CAP_OPENNI_IMAGE_GENERATOR_OUTPUT_MODE     = +CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_OUTPUT_MODE,
329
       CAP_OPENNI_DEPTH_GENERATOR_PRESENT         = +CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT,
330
       CAP_OPENNI_DEPTH_GENERATOR_BASELINE        = +CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_BASELINE,
331
       CAP_OPENNI_DEPTH_GENERATOR_FOCAL_LENGTH    = +CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_FOCAL_LENGTH,
332
       CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION    = +CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_REGISTRATION,
333
       CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION_ON =  CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION,
334
       CAP_OPENNI_IR_GENERATOR_PRESENT            = +CAP_OPENNI_IR_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT
335
     };
336
#ifdef _MSC_VER
337
#pragma warning( pop )
338
#endif
339
340
//! OpenNI data given from depth generator
341
enum { CAP_OPENNI_DEPTH_MAP         = 0, //!< Depth values in mm (CV_16UC1)
342
       CAP_OPENNI_POINT_CLOUD_MAP   = 1, //!< XYZ in meters (CV_32FC3)
343
       CAP_OPENNI_DISPARITY_MAP     = 2, //!< Disparity in pixels (CV_8UC1)
344
       CAP_OPENNI_DISPARITY_MAP_32F = 3, //!< Disparity in pixels (CV_32FC1)
345
       CAP_OPENNI_VALID_DEPTH_MASK  = 4, //!< CV_8UC1
346
347
       CAP_OPENNI_BGR_IMAGE         = 5, //!< Data given from RGB image generator
348
       CAP_OPENNI_GRAY_IMAGE        = 6, //!< Data given from RGB image generator
349
350
       CAP_OPENNI_IR_IMAGE          = 7  //!< Data given from IR image generator
351
     };
352
353
//! Supported output modes of OpenNI image generator
354
enum { CAP_OPENNI_VGA_30HZ  = 0,
355
       CAP_OPENNI_SXGA_15HZ = 1,
356
       CAP_OPENNI_SXGA_30HZ = 2,
357
       CAP_OPENNI_QVGA_30HZ = 3,
358
       CAP_OPENNI_QVGA_60HZ = 4
359
     };
360
361
//! @} OpenNI
362
363
/** @name GStreamer
364
    @{
365
*/
366
367
enum { CAP_PROP_GSTREAMER_QUEUE_LENGTH = 200 //!< Default is 1
368
     };
369
370
//! @} GStreamer
371
372
/** @name PvAPI, Prosilica GigE SDK
373
    @{
374
*/
375
376
//! PVAPI
377
enum { CAP_PROP_PVAPI_MULTICASTIP           = 300, //!< IP for enable multicast master mode. 0 for disable multicast.
378
       CAP_PROP_PVAPI_FRAMESTARTTRIGGERMODE = 301, //!< FrameStartTriggerMode: Determines how a frame is initiated.
379
       CAP_PROP_PVAPI_DECIMATIONHORIZONTAL  = 302, //!< Horizontal sub-sampling of the image.
380
       CAP_PROP_PVAPI_DECIMATIONVERTICAL    = 303, //!< Vertical sub-sampling of the image.
381
       CAP_PROP_PVAPI_BINNINGX              = 304, //!< Horizontal binning factor.
382
       CAP_PROP_PVAPI_BINNINGY              = 305, //!< Vertical binning factor.
383
       CAP_PROP_PVAPI_PIXELFORMAT           = 306  //!< Pixel format.
384
     };
385
386
//! PVAPI: FrameStartTriggerMode
387
enum { CAP_PVAPI_FSTRIGMODE_FREERUN     = 0,    //!< Freerun
388
       CAP_PVAPI_FSTRIGMODE_SYNCIN1     = 1,    //!< SyncIn1
389
       CAP_PVAPI_FSTRIGMODE_SYNCIN2     = 2,    //!< SyncIn2
390
       CAP_PVAPI_FSTRIGMODE_FIXEDRATE   = 3,    //!< FixedRate
391
       CAP_PVAPI_FSTRIGMODE_SOFTWARE    = 4     //!< Software
392
     };
393
394
//! PVAPI: DecimationHorizontal, DecimationVertical
395
enum { CAP_PVAPI_DECIMATION_OFF       = 1,    //!< Off
396
       CAP_PVAPI_DECIMATION_2OUTOF4   = 2,    //!< 2 out of 4 decimation
397
       CAP_PVAPI_DECIMATION_2OUTOF8   = 4,    //!< 2 out of 8 decimation
398
       CAP_PVAPI_DECIMATION_2OUTOF16  = 8     //!< 2 out of 16 decimation
399
     };
400
401
//! PVAPI: PixelFormat
402
enum { CAP_PVAPI_PIXELFORMAT_MONO8    = 1,    //!< Mono8
403
       CAP_PVAPI_PIXELFORMAT_MONO16   = 2,    //!< Mono16
404
       CAP_PVAPI_PIXELFORMAT_BAYER8   = 3,    //!< Bayer8
405
       CAP_PVAPI_PIXELFORMAT_BAYER16  = 4,    //!< Bayer16
406
       CAP_PVAPI_PIXELFORMAT_RGB24    = 5,    //!< Rgb24
407
       CAP_PVAPI_PIXELFORMAT_BGR24    = 6,    //!< Bgr24
408
       CAP_PVAPI_PIXELFORMAT_RGBA32   = 7,    //!< Rgba32
409
       CAP_PVAPI_PIXELFORMAT_BGRA32   = 8,    //!< Bgra32
410
     };
411
412
//! @} PvAPI
413
414
/** @name XIMEA Camera API
415
    @{
416
*/
417
418
//! Properties of cameras available through XIMEA SDK backend
419
enum { CAP_PROP_XI_DOWNSAMPLING                                 = 400, //!< Change image resolution by binning or skipping.
420
       CAP_PROP_XI_DATA_FORMAT                                  = 401, //!< Output data format.
421
       CAP_PROP_XI_OFFSET_X                                     = 402, //!< Horizontal offset from the origin to the area of interest (in pixels).
422
       CAP_PROP_XI_OFFSET_Y                                     = 403, //!< Vertical offset from the origin to the area of interest (in pixels).
423
       CAP_PROP_XI_TRG_SOURCE                                   = 404, //!< Defines source of trigger.
424
       CAP_PROP_XI_TRG_SOFTWARE                                 = 405, //!< Generates an internal trigger. PRM_TRG_SOURCE must be set to TRG_SOFTWARE.
425
       CAP_PROP_XI_GPI_SELECTOR                                 = 406, //!< Selects general purpose input.
426
       CAP_PROP_XI_GPI_MODE                                     = 407, //!< Set general purpose input mode.
427
       CAP_PROP_XI_GPI_LEVEL                                    = 408, //!< Get general purpose level.
428
       CAP_PROP_XI_GPO_SELECTOR                                 = 409, //!< Selects general purpose output.
429
       CAP_PROP_XI_GPO_MODE                                     = 410, //!< Set general purpose output mode.
430
       CAP_PROP_XI_LED_SELECTOR                                 = 411, //!< Selects camera signalling LED.
431
       CAP_PROP_XI_LED_MODE                                     = 412, //!< Define camera signalling LED functionality.
432
       CAP_PROP_XI_MANUAL_WB                                    = 413, //!< Calculates White Balance(must be called during acquisition).
433
       CAP_PROP_XI_AUTO_WB                                      = 414, //!< Automatic white balance.
434
       CAP_PROP_XI_AEAG                                         = 415, //!< Automatic exposure/gain.
435
       CAP_PROP_XI_EXP_PRIORITY                                 = 416, //!< Exposure priority (0.5 - exposure 50%, gain 50%).
436
       CAP_PROP_XI_AE_MAX_LIMIT                                 = 417, //!< Maximum limit of exposure in AEAG procedure.
437
       CAP_PROP_XI_AG_MAX_LIMIT                                 = 418, //!< Maximum limit of gain in AEAG procedure.
438
       CAP_PROP_XI_AEAG_LEVEL                                   = 419, //!< Average intensity of output signal AEAG should achieve(in %).
439
       CAP_PROP_XI_TIMEOUT                                      = 420, //!< Image capture timeout in milliseconds.
440
       CAP_PROP_XI_EXPOSURE                                     = 421, //!< Exposure time in microseconds.
441
       CAP_PROP_XI_EXPOSURE_BURST_COUNT                         = 422, //!< Sets the number of times of exposure in one frame.
442
       CAP_PROP_XI_GAIN_SELECTOR                                = 423, //!< Gain selector for parameter Gain allows to select different type of gains.
443
       CAP_PROP_XI_GAIN                                         = 424, //!< Gain in dB.
444
       CAP_PROP_XI_DOWNSAMPLING_TYPE                            = 426, //!< Change image downsampling type.
445
       CAP_PROP_XI_BINNING_SELECTOR                             = 427, //!< Binning engine selector.
446
       CAP_PROP_XI_BINNING_VERTICAL                             = 428, //!< Vertical Binning - number of vertical photo-sensitive cells to combine together.
447
       CAP_PROP_XI_BINNING_HORIZONTAL                           = 429, //!< Horizontal Binning - number of horizontal photo-sensitive cells to combine together.
448
       CAP_PROP_XI_BINNING_PATTERN                              = 430, //!< Binning pattern type.
449
       CAP_PROP_XI_DECIMATION_SELECTOR                          = 431, //!< Decimation engine selector.
450
       CAP_PROP_XI_DECIMATION_VERTICAL                          = 432, //!< Vertical Decimation - vertical sub-sampling of the image - reduces the vertical resolution of the image by the specified vertical decimation factor.
451
       CAP_PROP_XI_DECIMATION_HORIZONTAL                        = 433, //!< Horizontal Decimation - horizontal sub-sampling of the image - reduces the horizontal resolution of the image by the specified vertical decimation factor.
452
       CAP_PROP_XI_DECIMATION_PATTERN                           = 434, //!< Decimation pattern type.
453
       CAP_PROP_XI_TEST_PATTERN_GENERATOR_SELECTOR              = 587, //!< Selects which test pattern generator is controlled by the TestPattern feature.
454
       CAP_PROP_XI_TEST_PATTERN                                 = 588, //!< Selects which test pattern type is generated by the selected generator.
455
       CAP_PROP_XI_IMAGE_DATA_FORMAT                            = 435, //!< Output data format.
456
       CAP_PROP_XI_SHUTTER_TYPE                                 = 436, //!< Change sensor shutter type(CMOS sensor).
457
       CAP_PROP_XI_SENSOR_TAPS                                  = 437, //!< Number of taps.
458
       CAP_PROP_XI_AEAG_ROI_OFFSET_X                            = 439, //!< Automatic exposure/gain ROI offset X.
459
       CAP_PROP_XI_AEAG_ROI_OFFSET_Y                            = 440, //!< Automatic exposure/gain ROI offset Y.
460
       CAP_PROP_XI_AEAG_ROI_WIDTH                               = 441, //!< Automatic exposure/gain ROI Width.
461
       CAP_PROP_XI_AEAG_ROI_HEIGHT                              = 442, //!< Automatic exposure/gain ROI Height.
462
       CAP_PROP_XI_BPC                                          = 445, //!< Correction of bad pixels.
463
       CAP_PROP_XI_WB_KR                                        = 448, //!< White balance red coefficient.
464
       CAP_PROP_XI_WB_KG                                        = 449, //!< White balance green coefficient.
465
       CAP_PROP_XI_WB_KB                                        = 450, //!< White balance blue coefficient.
466
       CAP_PROP_XI_WIDTH                                        = 451, //!< Width of the Image provided by the device (in pixels).
467
       CAP_PROP_XI_HEIGHT                                       = 452, //!< Height of the Image provided by the device (in pixels).
468
       CAP_PROP_XI_REGION_SELECTOR                              = 589, //!< Selects Region in Multiple ROI which parameters are set by width, height, ... ,region mode.
469
       CAP_PROP_XI_REGION_MODE                                  = 595, //!< Activates/deactivates Region selected by Region Selector.
470
       CAP_PROP_XI_LIMIT_BANDWIDTH                              = 459, //!< Set/get bandwidth(datarate)(in Megabits).
471
       CAP_PROP_XI_SENSOR_DATA_BIT_DEPTH                        = 460, //!< Sensor output data bit depth.
472
       CAP_PROP_XI_OUTPUT_DATA_BIT_DEPTH                        = 461, //!< Device output data bit depth.
473
       CAP_PROP_XI_IMAGE_DATA_BIT_DEPTH                         = 462, //!< bitdepth of data returned by function xiGetImage.
474
       CAP_PROP_XI_OUTPUT_DATA_PACKING                          = 463, //!< Device output data packing (or grouping) enabled. Packing could be enabled if output_data_bit_depth > 8 and packing capability is available.
475
       CAP_PROP_XI_OUTPUT_DATA_PACKING_TYPE                     = 464, //!< Data packing type. Some cameras supports only specific packing type.
476
       CAP_PROP_XI_IS_COOLED                                    = 465, //!< Returns 1 for cameras that support cooling.
477
       CAP_PROP_XI_COOLING                                      = 466, //!< Start camera cooling.
478
       CAP_PROP_XI_TARGET_TEMP                                  = 467, //!< Set sensor target temperature for cooling.
479
       CAP_PROP_XI_CHIP_TEMP                                    = 468, //!< Camera sensor temperature.
480
       CAP_PROP_XI_HOUS_TEMP                                    = 469, //!< Camera housing temperature.
481
       CAP_PROP_XI_HOUS_BACK_SIDE_TEMP                          = 590, //!< Camera housing back side temperature.
482
       CAP_PROP_XI_SENSOR_BOARD_TEMP                            = 596, //!< Camera sensor board temperature.
483
       CAP_PROP_XI_CMS                                          = 470, //!< Mode of color management system.
484
       CAP_PROP_XI_APPLY_CMS                                    = 471, //!< Enable applying of CMS profiles to xiGetImage (see XI_PRM_INPUT_CMS_PROFILE, XI_PRM_OUTPUT_CMS_PROFILE).
485
       CAP_PROP_XI_IMAGE_IS_COLOR                               = 474, //!< Returns 1 for color cameras.
486
       CAP_PROP_XI_COLOR_FILTER_ARRAY                           = 475, //!< Returns color filter array type of RAW data.
487
       CAP_PROP_XI_GAMMAY                                       = 476, //!< Luminosity gamma.
488
       CAP_PROP_XI_GAMMAC                                       = 477, //!< Chromaticity gamma.
489
       CAP_PROP_XI_SHARPNESS                                    = 478, //!< Sharpness Strength.
490
       CAP_PROP_XI_CC_MATRIX_00                                 = 479, //!< Color Correction Matrix element [0][0].
491
       CAP_PROP_XI_CC_MATRIX_01                                 = 480, //!< Color Correction Matrix element [0][1].
492
       CAP_PROP_XI_CC_MATRIX_02                                 = 481, //!< Color Correction Matrix element [0][2].
493
       CAP_PROP_XI_CC_MATRIX_03                                 = 482, //!< Color Correction Matrix element [0][3].
494
       CAP_PROP_XI_CC_MATRIX_10                                 = 483, //!< Color Correction Matrix element [1][0].
495
       CAP_PROP_XI_CC_MATRIX_11                                 = 484, //!< Color Correction Matrix element [1][1].
496
       CAP_PROP_XI_CC_MATRIX_12                                 = 485, //!< Color Correction Matrix element [1][2].
497
       CAP_PROP_XI_CC_MATRIX_13                                 = 486, //!< Color Correction Matrix element [1][3].
498
       CAP_PROP_XI_CC_MATRIX_20                                 = 487, //!< Color Correction Matrix element [2][0].
499
       CAP_PROP_XI_CC_MATRIX_21                                 = 488, //!< Color Correction Matrix element [2][1].
500
       CAP_PROP_XI_CC_MATRIX_22                                 = 489, //!< Color Correction Matrix element [2][2].
501
       CAP_PROP_XI_CC_MATRIX_23                                 = 490, //!< Color Correction Matrix element [2][3].
502
       CAP_PROP_XI_CC_MATRIX_30                                 = 491, //!< Color Correction Matrix element [3][0].
503
       CAP_PROP_XI_CC_MATRIX_31                                 = 492, //!< Color Correction Matrix element [3][1].
504
       CAP_PROP_XI_CC_MATRIX_32                                 = 493, //!< Color Correction Matrix element [3][2].
505
       CAP_PROP_XI_CC_MATRIX_33                                 = 494, //!< Color Correction Matrix element [3][3].
506
       CAP_PROP_XI_DEFAULT_CC_MATRIX                            = 495, //!< Set default Color Correction Matrix.
507
       CAP_PROP_XI_TRG_SELECTOR                                 = 498, //!< Selects the type of trigger.
508
       CAP_PROP_XI_ACQ_FRAME_BURST_COUNT                        = 499, //!< Sets number of frames acquired by burst. This burst is used only if trigger is set to FrameBurstStart.
509
       CAP_PROP_XI_DEBOUNCE_EN                                  = 507, //!< Enable/Disable debounce to selected GPI.
510
       CAP_PROP_XI_DEBOUNCE_T0                                  = 508, //!< Debounce time (x * 10us).
511
       CAP_PROP_XI_DEBOUNCE_T1                                  = 509, //!< Debounce time (x * 10us).
512
       CAP_PROP_XI_DEBOUNCE_POL                                 = 510, //!< Debounce polarity (pol = 1 t0 - falling edge, t1 - rising edge).
513
       CAP_PROP_XI_LENS_MODE                                    = 511, //!< Status of lens control interface. This shall be set to XI_ON before any Lens operations.
514
       CAP_PROP_XI_LENS_APERTURE_VALUE                          = 512, //!< Current lens aperture value in stops. Examples: 2.8, 4, 5.6, 8, 11.
515
       CAP_PROP_XI_LENS_FOCUS_MOVEMENT_VALUE                    = 513, //!< Lens current focus movement value to be used by XI_PRM_LENS_FOCUS_MOVE in motor steps.
516
       CAP_PROP_XI_LENS_FOCUS_MOVE                              = 514, //!< Moves lens focus motor by steps set in XI_PRM_LENS_FOCUS_MOVEMENT_VALUE.
517
       CAP_PROP_XI_LENS_FOCUS_DISTANCE                          = 515, //!< Lens focus distance in cm.
518
       CAP_PROP_XI_LENS_FOCAL_LENGTH                            = 516, //!< Lens focal distance in mm.
519
       CAP_PROP_XI_LENS_FEATURE_SELECTOR                        = 517, //!< Selects the current feature which is accessible by XI_PRM_LENS_FEATURE.
520
       CAP_PROP_XI_LENS_FEATURE                                 = 518, //!< Allows access to lens feature value currently selected by XI_PRM_LENS_FEATURE_SELECTOR.
521
       CAP_PROP_XI_DEVICE_MODEL_ID                              = 521, //!< Returns device model id.
522
       CAP_PROP_XI_DEVICE_SN                                    = 522, //!< Returns device serial number.
523
       CAP_PROP_XI_IMAGE_DATA_FORMAT_RGB32_ALPHA                = 529, //!< The alpha channel of RGB32 output image format.
524
       CAP_PROP_XI_IMAGE_PAYLOAD_SIZE                           = 530, //!< Buffer size in bytes sufficient for output image returned by xiGetImage.
525
       CAP_PROP_XI_TRANSPORT_PIXEL_FORMAT                       = 531, //!< Current format of pixels on transport layer.
526
       CAP_PROP_XI_SENSOR_CLOCK_FREQ_HZ                         = 532, //!< Sensor clock frequency in Hz.
527
       CAP_PROP_XI_SENSOR_CLOCK_FREQ_INDEX                      = 533, //!< Sensor clock frequency index. Sensor with selected frequencies have possibility to set the frequency only by this index.
528
       CAP_PROP_XI_SENSOR_OUTPUT_CHANNEL_COUNT                  = 534, //!< Number of output channels from sensor used for data transfer.
529
       CAP_PROP_XI_FRAMERATE                                    = 535, //!< Define framerate in Hz.
530
       CAP_PROP_XI_COUNTER_SELECTOR                             = 536, //!< Select counter.
531
       CAP_PROP_XI_COUNTER_VALUE                                = 537, //!< Counter status.
532
       CAP_PROP_XI_ACQ_TIMING_MODE                              = 538, //!< Type of sensor frames timing.
533
       CAP_PROP_XI_AVAILABLE_BANDWIDTH                          = 539, //!< Calculate and returns available interface bandwidth(int Megabits).
534
       CAP_PROP_XI_BUFFER_POLICY                                = 540, //!< Data move policy.
535
       CAP_PROP_XI_LUT_EN                                       = 541, //!< Activates LUT.
536
       CAP_PROP_XI_LUT_INDEX                                    = 542, //!< Control the index (offset) of the coefficient to access in the LUT.
537
       CAP_PROP_XI_LUT_VALUE                                    = 543, //!< Value at entry LUTIndex of the LUT.
538
       CAP_PROP_XI_TRG_DELAY                                    = 544, //!< Specifies the delay in microseconds (us) to apply after the trigger reception before activating it.
539
       CAP_PROP_XI_TS_RST_MODE                                  = 545, //!< Defines how time stamp reset engine will be armed.
540
       CAP_PROP_XI_TS_RST_SOURCE                                = 546, //!< Defines which source will be used for timestamp reset. Writing this parameter will trigger settings of engine (arming).
541
       CAP_PROP_XI_IS_DEVICE_EXIST                              = 547, //!< Returns 1 if camera connected and works properly.
542
       CAP_PROP_XI_ACQ_BUFFER_SIZE                              = 548, //!< Acquisition buffer size in buffer_size_unit. Default bytes.
543
       CAP_PROP_XI_ACQ_BUFFER_SIZE_UNIT                         = 549, //!< Acquisition buffer size unit in bytes. Default 1. E.g. Value 1024 means that buffer_size is in KiBytes.
544
       CAP_PROP_XI_ACQ_TRANSPORT_BUFFER_SIZE                    = 550, //!< Acquisition transport buffer size in bytes.
545
       CAP_PROP_XI_BUFFERS_QUEUE_SIZE                           = 551, //!< Queue of field/frame buffers.
546
       CAP_PROP_XI_ACQ_TRANSPORT_BUFFER_COMMIT                  = 552, //!< Number of buffers to commit to low level.
547
       CAP_PROP_XI_RECENT_FRAME                                 = 553, //!< GetImage returns most recent frame.
548
       CAP_PROP_XI_DEVICE_RESET                                 = 554, //!< Resets the camera to default state.
549
       CAP_PROP_XI_COLUMN_FPN_CORRECTION                        = 555, //!< Correction of column FPN.
550
       CAP_PROP_XI_ROW_FPN_CORRECTION                           = 591, //!< Correction of row FPN.
551
       CAP_PROP_XI_SENSOR_MODE                                  = 558, //!< Current sensor mode. Allows to select sensor mode by one integer. Setting of this parameter affects: image dimensions and downsampling.
552
       CAP_PROP_XI_HDR                                          = 559, //!< Enable High Dynamic Range feature.
553
       CAP_PROP_XI_HDR_KNEEPOINT_COUNT                          = 560, //!< The number of kneepoints in the PWLR.
554
       CAP_PROP_XI_HDR_T1                                       = 561, //!< Position of first kneepoint(in % of XI_PRM_EXPOSURE).
555
       CAP_PROP_XI_HDR_T2                                       = 562, //!< Position of second kneepoint (in % of XI_PRM_EXPOSURE).
556
       CAP_PROP_XI_KNEEPOINT1                                   = 563, //!< Value of first kneepoint (% of sensor saturation).
557
       CAP_PROP_XI_KNEEPOINT2                                   = 564, //!< Value of second kneepoint (% of sensor saturation).
558
       CAP_PROP_XI_IMAGE_BLACK_LEVEL                            = 565, //!< Last image black level counts. Can be used for Offline processing to recall it.
559
       CAP_PROP_XI_HW_REVISION                                  = 571, //!< Returns hardware revision number.
560
       CAP_PROP_XI_DEBUG_LEVEL                                  = 572, //!< Set debug level.
561
       CAP_PROP_XI_AUTO_BANDWIDTH_CALCULATION                   = 573, //!< Automatic bandwidth calculation.
562
       CAP_PROP_XI_FFS_FILE_ID                                  = 594, //!< File number.
563
       CAP_PROP_XI_FFS_FILE_SIZE                                = 580, //!< Size of file.
564
       CAP_PROP_XI_FREE_FFS_SIZE                                = 581, //!< Size of free camera FFS.
565
       CAP_PROP_XI_USED_FFS_SIZE                                = 582, //!< Size of used camera FFS.
566
       CAP_PROP_XI_FFS_ACCESS_KEY                               = 583, //!< Setting of key enables file operations on some cameras.
567
       CAP_PROP_XI_SENSOR_FEATURE_SELECTOR                      = 585, //!< Selects the current feature which is accessible by XI_PRM_SENSOR_FEATURE_VALUE.
568
       CAP_PROP_XI_SENSOR_FEATURE_VALUE                         = 586, //!< Allows access to sensor feature value currently selected by XI_PRM_SENSOR_FEATURE_SELECTOR.
569
     };
570
571
//! @} XIMEA
572
573
574
/** @name ARAVIS Camera API
575
    @{
576
*/
577
578
//! Properties of cameras available through ARAVIS backend
579
enum { CAP_PROP_ARAVIS_AUTOTRIGGER                              = 600 //!< Automatically trigger frame capture if camera is configured with software trigger
580
};
581
582
//! @} ARAVIS
583
584
585
/** @name Android
586
    @{
587
*/
588
589
//! Properties of cameras available through NDK Camera API backend
590
enum { CAP_PROP_ANDROID_DEVICE_TORCH = 8001,
591
     };
592
593
//! @} Android
594
595
596
/** @name AVFoundation framework for iOS
597
    @{
598
*/
599
600
//! Properties of cameras available through AVFOUNDATION backend
601
enum { CAP_PROP_IOS_DEVICE_FOCUS        = 9001,
602
       CAP_PROP_IOS_DEVICE_EXPOSURE     = 9002,
603
       CAP_PROP_IOS_DEVICE_FLASH        = 9003,
604
       CAP_PROP_IOS_DEVICE_WHITEBALANCE = 9004,
605
       CAP_PROP_IOS_DEVICE_TORCH        = 9005
606
     };
607
608
//! @} AVFoundation framework for iOS
609
610
611
/** @name Smartek Giganetix GigEVisionSDK
612
    @{
613
*/
614
615
//! Properties of cameras available through Smartek Giganetix Ethernet Vision backend
616
/* --- Vladimir Litvinenko (litvinenko.vladimir@gmail.com) --- */
617
enum { CAP_PROP_GIGA_FRAME_OFFSET_X   = 10001,
618
       CAP_PROP_GIGA_FRAME_OFFSET_Y   = 10002,
619
       CAP_PROP_GIGA_FRAME_WIDTH_MAX  = 10003,
620
       CAP_PROP_GIGA_FRAME_HEIGHT_MAX  = 10004,
621
// Typo in pre-5.x sources. Remain for source compatibility
622
#if CV_VERSION_MAJOR <= 4
623
       CAP_PROP_GIGA_FRAME_HEIGH_MAX = CAP_PROP_GIGA_FRAME_HEIGHT_MAX, //!< @deprecated
624
#endif
625
626
       CAP_PROP_GIGA_FRAME_SENS_WIDTH = 10005,
627
       CAP_PROP_GIGA_FRAME_SENS_HEIGHT = 10006
628
// Typo in pre-5.x sources. Remain for source compatibility
629
#if CV_VERSION_MAJOR <= 4
630
       ,
631
       CAP_PROP_GIGA_FRAME_SENS_HEIGH = CAP_PROP_GIGA_FRAME_SENS_HEIGHT //!< @deprecated
632
#endif
633
     };
634
635
//! @} Smartek
636
637
/** @name Intel Perceptual Computing SDK
638
    @{
639
*/
640
enum { CAP_PROP_INTELPERC_PROFILE_COUNT               = 11001,
641
       CAP_PROP_INTELPERC_PROFILE_IDX                 = 11002,
642
       CAP_PROP_INTELPERC_DEPTH_LOW_CONFIDENCE_VALUE  = 11003,
643
       CAP_PROP_INTELPERC_DEPTH_SATURATION_VALUE      = 11004,
644
       CAP_PROP_INTELPERC_DEPTH_CONFIDENCE_THRESHOLD  = 11005,
645
       CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_HORZ     = 11006,
646
       CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_VERT     = 11007
647
     };
648
649
//! Intel Perceptual Streams
650
enum { CAP_INTELPERC_DEPTH_GENERATOR = 1 << 29,
651
       CAP_INTELPERC_IMAGE_GENERATOR = 1 << 28,
652
       CAP_INTELPERC_IR_GENERATOR    = 1 << 27,
653
       CAP_INTELPERC_GENERATORS_MASK = CAP_INTELPERC_DEPTH_GENERATOR + CAP_INTELPERC_IMAGE_GENERATOR + CAP_INTELPERC_IR_GENERATOR
654
     };
655
656
enum { CAP_INTELPERC_DEPTH_MAP              = 0, //!< Each pixel is a 16-bit integer. The value indicates the distance from an object to the camera's XY plane or the Cartesian depth.
657
       CAP_INTELPERC_UVDEPTH_MAP            = 1, //!< Each pixel contains two 32-bit floating point values in the range of 0-1, representing the mapping of depth coordinates to the color coordinates.
658
       CAP_INTELPERC_IR_MAP                 = 2, //!< Each pixel is a 16-bit integer. The value indicates the intensity of the reflected laser beam.
659
       CAP_INTELPERC_IMAGE                  = 3
660
     };
661
662
//! @} Intel Perceptual
663
664
/** @name gPhoto2 connection
665
    @{
666
*/
667
668
/** @brief gPhoto2 properties
669
670
If `propertyId` is less than 0 then work on widget with that __additive inversed__ camera setting ID
671
Get IDs by using CAP_PROP_GPHOTO2_WIDGET_ENUMERATE.
672
@see CvCaptureCAM_GPHOTO2 for more info
673
*/
674
enum { CAP_PROP_GPHOTO2_PREVIEW           = 17001, //!< Capture only preview from liveview mode.
675
       CAP_PROP_GPHOTO2_WIDGET_ENUMERATE  = 17002, //!< Readonly, returns (const char *).
676
       CAP_PROP_GPHOTO2_RELOAD_CONFIG     = 17003, //!< Trigger, only by set. Reload camera settings.
677
       CAP_PROP_GPHOTO2_RELOAD_ON_CHANGE  = 17004, //!< Reload all settings on set.
678
       CAP_PROP_GPHOTO2_COLLECT_MSGS      = 17005, //!< Collect messages with details.
679
       CAP_PROP_GPHOTO2_FLUSH_MSGS        = 17006, //!< Readonly, returns (const char *).
680
       CAP_PROP_SPEED                     = 17007, //!< Exposure speed. Can be readonly, depends on camera program.
681
       CAP_PROP_APERTURE                  = 17008, //!< Aperture. Can be readonly, depends on camera program.
682
       CAP_PROP_EXPOSUREPROGRAM           = 17009, //!< Camera exposure program.
683
       CAP_PROP_VIEWFINDER                = 17010  //!< Enter liveview mode.
684
     };
685
686
//! @} gPhoto2
687
688
689
/** @name Images backend
690
    @{
691
*/
692
693
/** @brief Images backend properties
694
695
*/
696
enum { CAP_PROP_IMAGES_BASE = 18000,
697
       CAP_PROP_IMAGES_LAST = 19000 // excluding
698
     };
699
700
//! @} Images
701
702
/** @name OBSENSOR (for Orbbec 3D-Sensor device/module )
703
    @{
704
*/
705
//! OBSENSOR data given from image generator
706
enum VideoCaptureOBSensorDataType{
707
    CAP_OBSENSOR_DEPTH_MAP = 0, //!< Depth values in mm (CV_16UC1)
708
    CAP_OBSENSOR_BGR_IMAGE = 1, //!< Data given from BGR stream generator
709
    CAP_OBSENSOR_IR_IMAGE = 2   //!< Data given from IR stream generator(CV_16UC1)
710
};
711
712
//! OBSENSOR stream generator
713
enum VideoCaptureOBSensorGenerators{
714
    CAP_OBSENSOR_DEPTH_GENERATOR = 1 << 29,
715
    CAP_OBSENSOR_IMAGE_GENERATOR = 1 << 28,
716
    CAP_OBSENSOR_IR_GENERATOR    = 1 << 27,
717
    CAP_OBSENSOR_GENERATORS_MASK = CAP_OBSENSOR_DEPTH_GENERATOR + CAP_OBSENSOR_IMAGE_GENERATOR + CAP_OBSENSOR_IR_GENERATOR
718
};
719
720
//!OBSENSOR properties
721
enum VideoCaptureOBSensorProperties{
722
    // INTRINSIC
723
    CAP_PROP_OBSENSOR_INTRINSIC_FX=26001,
724
    CAP_PROP_OBSENSOR_INTRINSIC_FY=26002,
725
    CAP_PROP_OBSENSOR_INTRINSIC_CX=26003,
726
    CAP_PROP_OBSENSOR_INTRINSIC_CY=26004,
727
    CAP_PROP_OBSENSOR_RGB_POS_MSEC=26005,
728
    CAP_PROP_OBSENSOR_DEPTH_POS_MSEC=26006,
729
    CAP_PROP_OBSENSOR_DEPTH_WIDTH=26007,
730
    CAP_PROP_OBSENSOR_DEPTH_HEIGHT=26008,
731
    CAP_PROP_OBSENSOR_DEPTH_FPS=26009,
732
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_K1=26010,
733
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_K2=26011,
734
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_K3=26012,
735
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_K4=26013,
736
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_K5=26014,
737
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_K6=26015,
738
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_P1=26016,
739
    CAP_PROP_OBSENSOR_COLOR_DISTORTION_P2=26017
740
};
741
742
//! @} OBSENSOR
743
744
//! @} videoio_flags_others
745
746
/** @brief Read data stream interface
747
 */
748
class CV_EXPORTS_W IStreamReader
749
{
750
public:
751
    virtual ~IStreamReader();
752
753
    /** @brief Read bytes from stream
754
     *
755
     * @param buffer already allocated buffer of at least @p size bytes
756
     * @param size maximum number of bytes to read
757
     *
758
     * @return actual number of read bytes
759
     */
760
    CV_WRAP virtual long long read(char* buffer, long long size) = 0;
761
762
    /** @brief Sets the stream position
763
     *
764
     * @param offset Seek offset
765
     * @param origin SEEK_SET / SEEK_END / SEEK_CUR
766
     *
767
     * @see fseek
768
     */
769
    CV_WRAP virtual long long seek(long long offset, int origin) = 0;
770
};
771
772
class IVideoCapture;
773
//! @cond IGNORED
774
namespace internal { class VideoCapturePrivateAccessor; }
775
//! @endcond IGNORED
776
777
/** @brief Class for video capturing from video files, image sequences or cameras.
778
779
The class provides C++ API for capturing video from cameras or for reading video files and image sequences.
780
781
Here is how the class can be used:
782
@include samples/cpp/videocapture_basic.cpp
783
784
@note In @ref videoio_c "C API" the black-box structure `CvCapture` is used instead of %VideoCapture.
785
@note
786
-   (C++) A basic sample on using the %VideoCapture interface can be found at
787
    `OPENCV_SOURCE_CODE/samples/cpp/videocapture_starter.cpp`
788
-   (Python) A basic sample on using the %VideoCapture interface can be found at
789
    `OPENCV_SOURCE_CODE/samples/python/video.py`
790
-   (Python) A multi threaded video processing sample can be found at
791
    `OPENCV_SOURCE_CODE/samples/python/video_threaded.py`
792
-   (Python) %VideoCapture sample showcasing some features of the Video4Linux2 backend
793
    `OPENCV_SOURCE_CODE/samples/python/video_v4l2.py`
794
 */
795
class CV_EXPORTS_W VideoCapture
796
{
797
public:
798
    /** @brief Default constructor
799
    @note In @ref videoio_c "C API", when you finished working with video, release CvCapture structure with
800
    cvReleaseCapture(), or use Ptr\<CvCapture\> that calls cvReleaseCapture() automatically in the
801
    destructor.
802
     */
803
    CV_WRAP VideoCapture();
804
805
    /** @overload
806
    @brief  Opens a video file or a capturing device or an IP video stream for video capturing with API Preference
807
808
    @param filename it can be:
809
    - name of video file (eg. `video.avi`)
810
    - or image sequence (eg. `img_%02d.jpg`, which will read samples like `img_00.jpg, img_01.jpg, img_02.jpg, ...`)
811
    - or URL of video stream (eg. `protocol://host:port/script_name?script_params|auth`)
812
    - or GStreamer pipeline string in gst-launch tool format in case if GStreamer is used as backend
813
      Note that each video stream or IP camera feed has its own URL scheme. Please refer to the
814
      documentation of source stream to know the right URL.
815
    @param apiPreference preferred Capture API backends to use. Can be used to enforce a specific reader
816
    implementation if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_IMAGES or cv::CAP_DSHOW.
817
818
    @sa cv::VideoCaptureAPIs
819
    */
820
    CV_WRAP explicit VideoCapture(const String& filename, int apiPreference = CAP_ANY);
821
822
    /** @overload
823
    @brief Opens a video file or a capturing device or an IP video stream for video capturing with API Preference and parameters
824
825
    The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`.
826
    See cv::VideoCaptureProperties
827
    */
828
    CV_WRAP explicit VideoCapture(const String& filename, int apiPreference, const std::vector<int>& params);
829
830
    /** @overload
831
    @brief  Opens a camera for video capturing
832
833
    @param index id of the video capturing device to open. To open default camera using default backend just pass 0.
834
    (to backward compatibility usage of camera_id + domain_offset (CAP_*) is valid when apiPreference is CAP_ANY)
835
    @param apiPreference preferred Capture API backends to use. Can be used to enforce a specific reader
836
    implementation if multiple are available: e.g. cv::CAP_DSHOW or cv::CAP_MSMF or cv::CAP_V4L.
837
838
    @sa cv::VideoCaptureAPIs
839
    */
840
    CV_WRAP explicit VideoCapture(int index, int apiPreference = CAP_ANY);
841
842
    /** @overload
843
    @brief Opens a camera for video capturing with API Preference and parameters
844
845
    The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`.
846
    See cv::VideoCaptureProperties
847
    */
848
    CV_WRAP explicit VideoCapture(int index, int apiPreference, const std::vector<int>& params);
849
850
    /** @overload
851
    @brief Opens a video using data stream.
852
853
    The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`.
854
    See cv::VideoCaptureProperties
855
    */
856
    CV_WRAP VideoCapture(const Ptr<IStreamReader>& source, int apiPreference, const std::vector<int>& params);
857
858
    /** @brief Default destructor
859
860
    The method first calls VideoCapture::release to close the already opened file or camera.
861
    */
862
    virtual ~VideoCapture();
863
864
    /** @brief  Opens a video file or a capturing device or an IP video stream for video capturing.
865
866
    @overload
867
868
    Parameters are same as the constructor VideoCapture(const String& filename, int apiPreference = CAP_ANY)
869
    @return `true` if the file has been successfully opened
870
871
    The method first calls VideoCapture::release to close the already opened file or camera.
872
     */
873
    CV_WRAP virtual bool open(const String& filename, int apiPreference = CAP_ANY);
874
875
    /** @brief  Opens a video file or a capturing device or an IP video stream for video capturing with API Preference and parameters
876
877
    @overload
878
879
    The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`.
880
    See cv::VideoCaptureProperties
881
882
    @return `true` if the file has been successfully opened
883
884
    The method first calls VideoCapture::release to close the already opened file or camera.
885
     */
886
    CV_WRAP virtual bool open(const String& filename, int apiPreference, const std::vector<int>& params);
887
888
    /** @brief  Opens a camera for video capturing
889
890
    @overload
891
892
    Parameters are same as the constructor VideoCapture(int index, int apiPreference = CAP_ANY)
893
    @return `true` if the camera has been successfully opened.
894
895
    The method first calls VideoCapture::release to close the already opened file or camera.
896
    */
897
    CV_WRAP virtual bool open(int index, int apiPreference = CAP_ANY);
898
899
    /** @brief  Opens a camera for video capturing with API Preference and parameters
900
901
    @overload
902
903
    The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`.
904
    See cv::VideoCaptureProperties
905
906
    @return `true` if the camera has been successfully opened.
907
908
    The method first calls VideoCapture::release to close the already opened file or camera.
909
    */
910
    CV_WRAP virtual bool open(int index, int apiPreference, const std::vector<int>& params);
911
912
    /** @brief Opens a video using data stream.
913
914
    @overload
915
916
    The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`.
917
    See cv::VideoCaptureProperties
918
919
    @return `true` if the file has been successfully opened
920
921
    The method first calls VideoCapture::release to close the already opened file or camera.
922
     */
923
    CV_WRAP virtual bool open(const Ptr<IStreamReader>& source, int apiPreference, const std::vector<int>& params);
924
925
    /** @brief Returns true if video capturing has been initialized already.
926
927
    If the previous call to VideoCapture constructor or VideoCapture::open() succeeded, the method returns
928
    true.
929
     */
930
    CV_WRAP virtual bool isOpened() const;
931
932
    /** @brief Closes video file or capturing device.
933
934
    The method is automatically called by subsequent VideoCapture::open and by VideoCapture
935
    destructor.
936
937
    The C function also deallocates memory and clears \*capture pointer.
938
     */
939
    CV_WRAP virtual void release();
940
941
    /** @brief Grabs the next frame from video file or capturing device.
942
943
    @return `true` (non-zero) in the case of success.
944
945
    The method/function grabs the next frame from video file or camera and returns true (non-zero) in
946
    the case of success.
947
948
    The primary use of the function is in multi-camera environments, especially when the cameras do not
949
    have hardware synchronization. That is, you call VideoCapture::grab() for each camera and after that
950
    call the slower method VideoCapture::retrieve() to decode and get frame from each camera. This way
951
    the overhead on demosaicing or motion jpeg decompression etc. is eliminated and the retrieved frames
952
    from different cameras will be closer in time.
953
954
    Also, when a connected camera is multi-head (for example, a stereo camera or a Kinect device), the
955
    correct way of retrieving data from it is to call VideoCapture::grab() first and then call
956
    VideoCapture::retrieve() one or more times with different values of the channel parameter.
957
958
    @ref tutorial_kinect_openni
959
     */
960
    CV_WRAP virtual bool grab();
961
962
    /** @brief Decodes and returns the grabbed video frame.
963
964
    @param [out] image the video frame is returned here. If no frames has been grabbed the image will be empty.
965
    @param flag it could be a frame index or a driver specific flag
966
    @return `false` if no frames has been grabbed
967
968
    The method decodes and returns the just grabbed frame. If no frames has been grabbed
969
    (camera has been disconnected, or there are no more frames in video file), the method returns false
970
    and the function returns an empty image (with %cv::Mat, test it with Mat::empty()).
971
972
    @sa read()
973
974
    @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video
975
    capturing structure. It is not allowed to modify or release the image! You can copy the frame using
976
    cvCloneImage and then do whatever you want with the copy.
977
     */
978
    CV_WRAP virtual bool retrieve(OutputArray image, int flag = 0);
979
980
    /** @brief Stream operator to read the next video frame.
981
    @sa read()
982
    */
983
    virtual VideoCapture& operator >> (CV_OUT Mat& image);
984
985
    /** @overload
986
    @sa read()
987
    */
988
    virtual VideoCapture& operator >> (CV_OUT UMat& image);
989
990
    /** @brief Grabs, decodes and returns the next video frame.
991
992
    @param [out] image the video frame is returned here. If no frames has been grabbed the image will be empty.
993
    @return `false` if no frames has been grabbed
994
995
    The method/function combines VideoCapture::grab() and VideoCapture::retrieve() in one call. This is the
996
    most convenient method for reading video files or capturing data from decode and returns the just
997
    grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more
998
    frames in video file), the method returns false and the function returns empty image (with %cv::Mat, test it with Mat::empty()).
999
1000
    @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video
1001
    capturing structure. It is not allowed to modify or release the image! You can copy the frame using
1002
    cvCloneImage and then do whatever you want with the copy.
1003
     */
1004
    CV_WRAP virtual bool read(OutputArray image);
1005
1006
    /** @brief Sets a property in the VideoCapture.
1007
1008
    @param propId Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...)
1009
    or one from @ref videoio_flags_others
1010
    @param value Value of the property.
1011
    @return `true` if the property is supported by backend used by the VideoCapture instance.
1012
    @note Even if it returns `true` this doesn't ensure that the property
1013
    value has been accepted by the capture device. See note in VideoCapture::get()
1014
     */
1015
    CV_WRAP virtual bool set(int propId, double value);
1016
1017
    /** @brief Returns the specified VideoCapture property
1018
1019
    @param propId Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...)
1020
    or one from @ref videoio_flags_others
1021
    @return Value for the specified property. Value 0 is returned when querying a property that is
1022
    not supported by the backend used by the VideoCapture instance.
1023
1024
    @note Reading / writing properties involves many layers. Some unexpected result might happens
1025
    along this chain.
1026
    @code{.txt}
1027
    VideoCapture -> API Backend -> Operating System -> Device Driver -> Device Hardware
1028
    @endcode
1029
    The returned value might be different from what really used by the device or it could be encoded
1030
    using device dependent rules (eg. steps or percentage). Effective behaviour depends from device
1031
    driver and API Backend
1032
1033
    */
1034
    CV_WRAP virtual double get(int propId) const;
1035
1036
    /** @brief Returns used backend API name
1037
1038
     @note Stream should be opened.
1039
     */
1040
    CV_WRAP String getBackendName() const;
1041
1042
    /** Switches exceptions mode
1043
     *
1044
     * methods raise exceptions if not successful instead of returning an error code
1045
     */
1046
0
    CV_WRAP void setExceptionMode(bool enable) { throwOnFail = enable; }
1047
1048
    /// query if exception mode is active
1049
0
    CV_WRAP bool getExceptionMode() const { return throwOnFail; }
1050
1051
1052
    /** @brief Wait for ready frames from VideoCapture.
1053
1054
    @param streams input video streams
1055
    @param readyIndex stream indexes with grabbed frames (ready to use .retrieve() to fetch actual frame)
1056
    @param timeoutNs number of nanoseconds (0 - infinite)
1057
    @return `true` if streamReady is not empty
1058
1059
    @throws Exception %Exception on stream errors (check .isOpened() to filter out malformed streams) or VideoCapture type is not supported
1060
1061
    The primary use of the function is in multi-camera environments.
1062
    The method fills the ready state vector, grabs video frame, if camera is ready.
1063
1064
    After this call use VideoCapture::retrieve() to decode and fetch frame data.
1065
    */
1066
    CV_WRAP static
1067
    bool waitAny(
1068
            const std::vector<VideoCapture>& streams,
1069
            CV_OUT std::vector<int>& readyIndex,
1070
            int64 timeoutNs = 0);
1071
1072
protected:
1073
    Ptr<IVideoCapture> icap;
1074
    bool throwOnFail;
1075
1076
    friend class internal::VideoCapturePrivateAccessor;
1077
};
1078
1079
class IVideoWriter;
1080
1081
/** @example samples/cpp/tutorial_code/videoio/video-write/video-write.cpp
1082
Check @ref tutorial_video_write "the corresponding tutorial" for more details
1083
*/
1084
1085
/** @example samples/cpp/videowriter_basic.cpp
1086
An example using VideoCapture and VideoWriter class
1087
*/
1088
1089
/** @brief Video writer class.
1090
1091
The class provides C++ API for writing video files or image sequences.
1092
*/
1093
class CV_EXPORTS_W VideoWriter
1094
{
1095
public:
1096
    /** @brief Default constructors
1097
1098
    The constructors/functions initialize video writers.
1099
    -   On Linux FFMPEG is used to write videos;
1100
    -   On Windows FFMPEG or MSWF or DSHOW is used;
1101
    -   On MacOSX AVFoundation is used.
1102
     */
1103
    CV_WRAP VideoWriter();
1104
1105
    /** @overload
1106
    @param filename Name of the output video file.
1107
    @param fourcc 4-character code of codec used to compress the frames. For example,
1108
    VideoWriter::fourcc('P','I','M','1') is a MPEG-1 codec, VideoWriter::fourcc('M','J','P','G')
1109
    is a motion-jpeg codec etc. List of codes can be obtained at
1110
    [MSDN](https://docs.microsoft.com/en-us/windows/win32/medfound/video-fourccs) page
1111
    or with this [page](https://fourcc.org/codecs.php)
1112
    of the fourcc site for a more complete list). FFMPEG backend with MP4 container natively uses
1113
    other values as fourcc code: see [ObjectType](http://mp4ra.org/#/codecs),
1114
    so you may receive a warning message from OpenCV about fourcc code conversion.
1115
    @param fps Framerate of the created video stream.
1116
    @param frameSize Size of the video frames.
1117
    @param isColor If it is not zero, the encoder will expect and encode color frames, otherwise it
1118
    will work with grayscale frames.
1119
1120
    @b Tips:
1121
    - With some backends `fourcc=-1` pops up the codec selection dialog from the system.
1122
    - To save image sequence use a proper filename (eg. `img_%02d.jpg`) and `fourcc=0`
1123
      OR `fps=0`. Use uncompressed image format (eg. `img_%02d.BMP`) to save raw frames.
1124
    - Most codecs are lossy. If you want lossless video file you need to use a lossless codecs
1125
      (eg. FFMPEG FFV1, Huffman HFYU, Lagarith LAGS, etc...)
1126
    - If FFMPEG is enabled, using `codec=0; fps=0;` you can create an uncompressed (raw) video file.
1127
    - If FFMPEG is used, we allow frames of odd width or height, but in this case we truncate
1128
      the rightmost column/the bottom row. Probably, this should be handled more elegantly,
1129
      but some internal functions inside FFMPEG swscale require even width/height.
1130
    */
1131
    CV_WRAP VideoWriter(const String& filename, int fourcc, double fps,
1132
                Size frameSize, bool isColor = true);
1133
1134
    /** @overload
1135
    The `apiPreference` parameter allows to specify API backends to use. Can be used to enforce a specific reader implementation
1136
    if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_GSTREAMER.
1137
     */
1138
    CV_WRAP VideoWriter(const String& filename, int apiPreference, int fourcc, double fps,
1139
                Size frameSize, bool isColor = true);
1140
1141
    /** @overload
1142
     * The `params` parameter allows to specify extra encoder parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .)
1143
     * see cv::VideoWriterProperties
1144
     */
1145
    CV_WRAP VideoWriter(const String& filename, int fourcc, double fps, const Size& frameSize,
1146
                        const std::vector<int>& params);
1147
1148
    /** @overload
1149
     */
1150
    CV_WRAP VideoWriter(const String& filename, int apiPreference, int fourcc, double fps,
1151
                        const Size& frameSize, const std::vector<int>& params);
1152
1153
    /** @brief Default destructor
1154
1155
    The method first calls VideoWriter::release to close the already opened file.
1156
    */
1157
    virtual ~VideoWriter();
1158
1159
    /** @brief Initializes or reinitializes video writer.
1160
1161
    The method opens video writer. Parameters are the same as in the constructor
1162
    VideoWriter::VideoWriter.
1163
    @return `true` if video writer has been successfully initialized
1164
1165
    The method first calls VideoWriter::release to close the already opened file.
1166
     */
1167
    CV_WRAP virtual bool open(const String& filename, int fourcc, double fps,
1168
                      Size frameSize, bool isColor = true);
1169
1170
    /** @overload
1171
     */
1172
    CV_WRAP bool open(const String& filename, int apiPreference, int fourcc, double fps,
1173
                      Size frameSize, bool isColor = true);
1174
1175
    /** @overload
1176
     */
1177
    CV_WRAP bool open(const String& filename, int fourcc, double fps, const Size& frameSize,
1178
                      const std::vector<int>& params);
1179
1180
    /** @overload
1181
     */
1182
    CV_WRAP bool open(const String& filename, int apiPreference, int fourcc, double fps,
1183
                      const Size& frameSize, const std::vector<int>& params);
1184
1185
    /** @brief Returns true if video writer has been successfully initialized.
1186
    */
1187
    CV_WRAP virtual bool isOpened() const;
1188
1189
    /** @brief Closes the video writer.
1190
1191
    The method is automatically called by subsequent VideoWriter::open and by the VideoWriter
1192
    destructor.
1193
     */
1194
    CV_WRAP virtual void release();
1195
1196
    /** @brief Stream operator to write the next video frame.
1197
    @sa write
1198
    */
1199
    virtual VideoWriter& operator << (const Mat& image);
1200
1201
    /** @overload
1202
    @sa write
1203
    */
1204
    virtual VideoWriter& operator << (const UMat& image);
1205
1206
    /** @brief Writes the next video frame
1207
1208
    @param image The written frame. In general, color images are expected in BGR format.
1209
1210
    The function/method writes the specified image to video file. It must have the same size as has
1211
    been specified when opening the video writer.
1212
     */
1213
    CV_WRAP virtual void write(InputArray image);
1214
1215
    /** @brief Sets a property in the VideoWriter.
1216
1217
     @param propId Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY)
1218
     or one of @ref videoio_flags_others
1219
1220
     @param value Value of the property.
1221
     @return  `true` if the property is supported by the backend used by the VideoWriter instance.
1222
     */
1223
    CV_WRAP virtual bool set(int propId, double value);
1224
1225
    /** @brief Returns the specified VideoWriter property
1226
1227
     @param propId Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY)
1228
     or one of @ref videoio_flags_others
1229
1230
     @return Value for the specified property. Value 0 is returned when querying a property that is
1231
     not supported by the backend used by the VideoWriter instance.
1232
     */
1233
    CV_WRAP virtual double get(int propId) const;
1234
1235
    /** @brief Concatenates 4 chars to a fourcc code
1236
1237
    @return a fourcc code
1238
1239
    This static method constructs the fourcc code of the codec to be used in the constructor
1240
    VideoWriter::VideoWriter or VideoWriter::open.
1241
     */
1242
    CV_WRAP static int fourcc(char c1, char c2, char c3, char c4);
1243
1244
    /** @brief Returns used backend API name
1245
1246
     @note Stream should be opened.
1247
     */
1248
    CV_WRAP String getBackendName() const;
1249
1250
protected:
1251
    Ptr<IVideoWriter> iwriter;
1252
1253
    static Ptr<IVideoWriter> create(const String& filename, int fourcc, double fps,
1254
                                    Size frameSize, bool isColor = true);
1255
};
1256
1257
//! @} videoio
1258
1259
} // cv
1260
1261
#endif //OPENCV_VIDEOIO_HPP