videoio.hpp 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001
  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. #ifndef OPENCV_VIDEOIO_HPP
  43. #define OPENCV_VIDEOIO_HPP
  44. #include "opencv2/core.hpp"
  45. /**
  46. @defgroup videoio Video I/O
  47. @brief Read and write video or images sequence with OpenCV
  48. ### See also:
  49. - @ref videoio_overview
  50. - Tutorials: @ref tutorial_table_of_content_videoio
  51. @{
  52. @defgroup videoio_flags_base Flags for video I/O
  53. @defgroup videoio_flags_others Additional flags for video I/O API backends
  54. @defgroup videoio_c C API for video I/O
  55. @defgroup videoio_ios iOS glue for video I/O
  56. @defgroup videoio_winrt WinRT glue for video I/O
  57. @defgroup videoio_registry Query I/O API backends registry
  58. @}
  59. */
  60. ////////////////////////////////// video io /////////////////////////////////
  61. typedef struct CvCapture CvCapture;
  62. typedef struct CvVideoWriter CvVideoWriter;
  63. namespace cv
  64. {
  65. //! @addtogroup videoio
  66. //! @{
  67. //! @addtogroup videoio_flags_base
  68. //! @{
  69. /** @brief %VideoCapture API backends identifier.
  70. Select preferred API for a capture object.
  71. To be used in the VideoCapture::VideoCapture() constructor or VideoCapture::open()
  72. @note Backends are available only if they have been built with your OpenCV binaries.
  73. See @ref videoio_overview for more information.
  74. */
  75. enum VideoCaptureAPIs {
  76. CAP_ANY = 0, //!< Auto detect == 0
  77. CAP_VFW = 200, //!< Video For Windows (obsolete, removed)
  78. CAP_V4L = 200, //!< V4L/V4L2 capturing support
  79. CAP_V4L2 = CAP_V4L, //!< Same as CAP_V4L
  80. CAP_FIREWIRE = 300, //!< IEEE 1394 drivers
  81. CAP_FIREWARE = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
  82. CAP_IEEE1394 = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
  83. CAP_DC1394 = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
  84. CAP_CMU1394 = CAP_FIREWIRE, //!< Same value as CAP_FIREWIRE
  85. CAP_QT = 500, //!< QuickTime (obsolete, removed)
  86. CAP_UNICAP = 600, //!< Unicap drivers (obsolete, removed)
  87. CAP_DSHOW = 700, //!< DirectShow (via videoInput)
  88. CAP_PVAPI = 800, //!< PvAPI, Prosilica GigE SDK
  89. CAP_OPENNI = 900, //!< OpenNI (for Kinect)
  90. CAP_OPENNI_ASUS = 910, //!< OpenNI (for Asus Xtion)
  91. CAP_ANDROID = 1000, //!< Android - not used
  92. CAP_XIAPI = 1100, //!< XIMEA Camera API
  93. CAP_AVFOUNDATION = 1200, //!< AVFoundation framework for iOS (OS X Lion will have the same API)
  94. CAP_GIGANETIX = 1300, //!< Smartek Giganetix GigEVisionSDK
  95. CAP_MSMF = 1400, //!< Microsoft Media Foundation (via videoInput)
  96. CAP_WINRT = 1410, //!< Microsoft Windows Runtime using Media Foundation
  97. CAP_INTELPERC = 1500, //!< RealSense (former Intel Perceptual Computing SDK)
  98. CAP_REALSENSE = 1500, //!< Synonym for CAP_INTELPERC
  99. CAP_OPENNI2 = 1600, //!< OpenNI2 (for Kinect)
  100. CAP_OPENNI2_ASUS = 1610, //!< OpenNI2 (for Asus Xtion and Occipital Structure sensors)
  101. CAP_GPHOTO2 = 1700, //!< gPhoto2 connection
  102. CAP_GSTREAMER = 1800, //!< GStreamer
  103. CAP_FFMPEG = 1900, //!< Open and record video file or stream using the FFMPEG library
  104. CAP_IMAGES = 2000, //!< OpenCV Image Sequence (e.g. img_%02d.jpg)
  105. CAP_ARAVIS = 2100, //!< Aravis SDK
  106. CAP_OPENCV_MJPEG = 2200, //!< Built-in OpenCV MotionJPEG codec
  107. CAP_INTEL_MFX = 2300, //!< Intel MediaSDK
  108. CAP_XINE = 2400, //!< XINE engine (Linux)
  109. };
  110. /** @brief %VideoCapture generic properties identifier.
  111. Reading / writing properties involves many layers. Some unexpected result might happens along this chain.
  112. Effective behaviour depends from device hardware, driver and API Backend.
  113. @sa videoio_flags_others, VideoCapture::get(), VideoCapture::set()
  114. */
  115. enum VideoCaptureProperties {
  116. CAP_PROP_POS_MSEC =0, //!< Current position of the video file in milliseconds.
  117. CAP_PROP_POS_FRAMES =1, //!< 0-based index of the frame to be decoded/captured next.
  118. CAP_PROP_POS_AVI_RATIO =2, //!< Relative position of the video file: 0=start of the film, 1=end of the film.
  119. CAP_PROP_FRAME_WIDTH =3, //!< Width of the frames in the video stream.
  120. CAP_PROP_FRAME_HEIGHT =4, //!< Height of the frames in the video stream.
  121. CAP_PROP_FPS =5, //!< Frame rate.
  122. CAP_PROP_FOURCC =6, //!< 4-character code of codec. see VideoWriter::fourcc .
  123. CAP_PROP_FRAME_COUNT =7, //!< Number of frames in the video file.
  124. CAP_PROP_FORMAT =8, //!< Format of the %Mat objects (see Mat::type()) returned by VideoCapture::retrieve().
  125. //!< Set value -1 to fetch undecoded RAW video streams (as Mat 8UC1).
  126. CAP_PROP_MODE =9, //!< Backend-specific value indicating the current capture mode.
  127. CAP_PROP_BRIGHTNESS =10, //!< Brightness of the image (only for those cameras that support).
  128. CAP_PROP_CONTRAST =11, //!< Contrast of the image (only for cameras).
  129. CAP_PROP_SATURATION =12, //!< Saturation of the image (only for cameras).
  130. CAP_PROP_HUE =13, //!< Hue of the image (only for cameras).
  131. CAP_PROP_GAIN =14, //!< Gain of the image (only for those cameras that support).
  132. CAP_PROP_EXPOSURE =15, //!< Exposure (only for those cameras that support).
  133. CAP_PROP_CONVERT_RGB =16, //!< Boolean flags indicating whether images should be converted to RGB. <br/>
  134. //!< *GStreamer note*: The flag is ignored in case if custom pipeline is used. It's user responsibility to interpret pipeline output.
  135. CAP_PROP_WHITE_BALANCE_BLUE_U =17, //!< Currently unsupported.
  136. CAP_PROP_RECTIFICATION =18, //!< Rectification flag for stereo cameras (note: only supported by DC1394 v 2.x backend currently).
  137. CAP_PROP_MONOCHROME =19,
  138. CAP_PROP_SHARPNESS =20,
  139. CAP_PROP_AUTO_EXPOSURE =21, //!< DC1394: exposure control done by camera, user can adjust reference level using this feature.
  140. CAP_PROP_GAMMA =22,
  141. CAP_PROP_TEMPERATURE =23,
  142. CAP_PROP_TRIGGER =24,
  143. CAP_PROP_TRIGGER_DELAY =25,
  144. CAP_PROP_WHITE_BALANCE_RED_V =26,
  145. CAP_PROP_ZOOM =27,
  146. CAP_PROP_FOCUS =28,
  147. CAP_PROP_GUID =29,
  148. CAP_PROP_ISO_SPEED =30,
  149. CAP_PROP_BACKLIGHT =32,
  150. CAP_PROP_PAN =33,
  151. CAP_PROP_TILT =34,
  152. CAP_PROP_ROLL =35,
  153. CAP_PROP_IRIS =36,
  154. CAP_PROP_SETTINGS =37, //!< Pop up video/camera filter dialog (note: only supported by DSHOW backend currently. The property value is ignored)
  155. CAP_PROP_BUFFERSIZE =38,
  156. CAP_PROP_AUTOFOCUS =39,
  157. CAP_PROP_SAR_NUM =40, //!< Sample aspect ratio: num/den (num)
  158. CAP_PROP_SAR_DEN =41, //!< Sample aspect ratio: num/den (den)
  159. CAP_PROP_BACKEND =42, //!< Current backend (enum VideoCaptureAPIs). Read-only property
  160. CAP_PROP_CHANNEL =43, //!< Video input or Channel Number (only for those cameras that support)
  161. CAP_PROP_AUTO_WB =44, //!< enable/ disable auto white-balance
  162. CAP_PROP_WB_TEMPERATURE=45, //!< white-balance color temperature
  163. 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
  164. CAP_PROP_BITRATE =47, //!< (read-only) Video bitrate in kbits/s
  165. #ifndef CV_DOXYGEN
  166. CV__CAP_PROP_LATEST
  167. #endif
  168. };
  169. /** @brief %VideoWriter generic properties identifier.
  170. @sa VideoWriter::get(), VideoWriter::set()
  171. */
  172. enum VideoWriterProperties {
  173. VIDEOWRITER_PROP_QUALITY = 1, //!< Current quality (0..100%) of the encoded videostream. Can be adjusted dynamically in some codecs.
  174. VIDEOWRITER_PROP_FRAMEBYTES = 2, //!< (Read-only): Size of just encoded video frame. Note that the encoding order may be different from representation order.
  175. VIDEOWRITER_PROP_NSTRIPES = 3 //!< Number of stripes for parallel encoding. -1 for auto detection.
  176. };
  177. //! @} videoio_flags_base
  178. //! @addtogroup videoio_flags_others
  179. //! @{
  180. /** @name IEEE 1394 drivers
  181. @{
  182. */
  183. /** @brief Modes of the IEEE 1394 controlling registers
  184. (can be: auto, manual, auto single push, absolute Latter allowed with any other mode)
  185. every feature can have only one mode turned on at a time
  186. */
  187. enum { CAP_PROP_DC1394_OFF = -4, //!< turn the feature off (not controlled manually nor automatically).
  188. CAP_PROP_DC1394_MODE_MANUAL = -3, //!< set automatically when a value of the feature is set by the user.
  189. CAP_PROP_DC1394_MODE_AUTO = -2,
  190. CAP_PROP_DC1394_MODE_ONE_PUSH_AUTO = -1,
  191. CAP_PROP_DC1394_MAX = 31
  192. };
  193. //! @} IEEE 1394 drivers
  194. /** @name OpenNI (for Kinect)
  195. @{
  196. */
  197. //! OpenNI map generators
  198. enum { CAP_OPENNI_DEPTH_GENERATOR = 1 << 31,
  199. CAP_OPENNI_IMAGE_GENERATOR = 1 << 30,
  200. CAP_OPENNI_IR_GENERATOR = 1 << 29,
  201. CAP_OPENNI_GENERATORS_MASK = CAP_OPENNI_DEPTH_GENERATOR + CAP_OPENNI_IMAGE_GENERATOR + CAP_OPENNI_IR_GENERATOR
  202. };
  203. //! Properties of cameras available through OpenNI backend
  204. enum { CAP_PROP_OPENNI_OUTPUT_MODE = 100,
  205. CAP_PROP_OPENNI_FRAME_MAX_DEPTH = 101, //!< In mm
  206. CAP_PROP_OPENNI_BASELINE = 102, //!< In mm
  207. CAP_PROP_OPENNI_FOCAL_LENGTH = 103, //!< In pixels
  208. CAP_PROP_OPENNI_REGISTRATION = 104, //!< Flag that synchronizes the remapping depth map to image map
  209. //!< by changing depth generator's view point (if the flag is "on") or
  210. //!< sets this view point to its normal one (if the flag is "off").
  211. CAP_PROP_OPENNI_REGISTRATION_ON = CAP_PROP_OPENNI_REGISTRATION,
  212. CAP_PROP_OPENNI_APPROX_FRAME_SYNC = 105,
  213. CAP_PROP_OPENNI_MAX_BUFFER_SIZE = 106,
  214. CAP_PROP_OPENNI_CIRCLE_BUFFER = 107,
  215. CAP_PROP_OPENNI_MAX_TIME_DURATION = 108,
  216. CAP_PROP_OPENNI_GENERATOR_PRESENT = 109,
  217. CAP_PROP_OPENNI2_SYNC = 110,
  218. CAP_PROP_OPENNI2_MIRROR = 111
  219. };
  220. //! OpenNI shortcuts
  221. enum { CAP_OPENNI_IMAGE_GENERATOR_PRESENT = CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT,
  222. CAP_OPENNI_IMAGE_GENERATOR_OUTPUT_MODE = CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_OUTPUT_MODE,
  223. CAP_OPENNI_DEPTH_GENERATOR_PRESENT = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT,
  224. CAP_OPENNI_DEPTH_GENERATOR_BASELINE = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_BASELINE,
  225. CAP_OPENNI_DEPTH_GENERATOR_FOCAL_LENGTH = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_FOCAL_LENGTH,
  226. CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_REGISTRATION,
  227. CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION_ON = CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION,
  228. CAP_OPENNI_IR_GENERATOR_PRESENT = CAP_OPENNI_IR_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT,
  229. };
  230. //! OpenNI data given from depth generator
  231. enum { CAP_OPENNI_DEPTH_MAP = 0, //!< Depth values in mm (CV_16UC1)
  232. CAP_OPENNI_POINT_CLOUD_MAP = 1, //!< XYZ in meters (CV_32FC3)
  233. CAP_OPENNI_DISPARITY_MAP = 2, //!< Disparity in pixels (CV_8UC1)
  234. CAP_OPENNI_DISPARITY_MAP_32F = 3, //!< Disparity in pixels (CV_32FC1)
  235. CAP_OPENNI_VALID_DEPTH_MASK = 4, //!< CV_8UC1
  236. CAP_OPENNI_BGR_IMAGE = 5, //!< Data given from RGB image generator
  237. CAP_OPENNI_GRAY_IMAGE = 6, //!< Data given from RGB image generator
  238. CAP_OPENNI_IR_IMAGE = 7 //!< Data given from IR image generator
  239. };
  240. //! Supported output modes of OpenNI image generator
  241. enum { CAP_OPENNI_VGA_30HZ = 0,
  242. CAP_OPENNI_SXGA_15HZ = 1,
  243. CAP_OPENNI_SXGA_30HZ = 2,
  244. CAP_OPENNI_QVGA_30HZ = 3,
  245. CAP_OPENNI_QVGA_60HZ = 4
  246. };
  247. //! @} OpenNI
  248. /** @name GStreamer
  249. @{
  250. */
  251. enum { CAP_PROP_GSTREAMER_QUEUE_LENGTH = 200 //!< Default is 1
  252. };
  253. //! @} GStreamer
  254. /** @name PvAPI, Prosilica GigE SDK
  255. @{
  256. */
  257. //! PVAPI
  258. enum { CAP_PROP_PVAPI_MULTICASTIP = 300, //!< IP for enable multicast master mode. 0 for disable multicast.
  259. CAP_PROP_PVAPI_FRAMESTARTTRIGGERMODE = 301, //!< FrameStartTriggerMode: Determines how a frame is initiated.
  260. CAP_PROP_PVAPI_DECIMATIONHORIZONTAL = 302, //!< Horizontal sub-sampling of the image.
  261. CAP_PROP_PVAPI_DECIMATIONVERTICAL = 303, //!< Vertical sub-sampling of the image.
  262. CAP_PROP_PVAPI_BINNINGX = 304, //!< Horizontal binning factor.
  263. CAP_PROP_PVAPI_BINNINGY = 305, //!< Vertical binning factor.
  264. CAP_PROP_PVAPI_PIXELFORMAT = 306 //!< Pixel format.
  265. };
  266. //! PVAPI: FrameStartTriggerMode
  267. enum { CAP_PVAPI_FSTRIGMODE_FREERUN = 0, //!< Freerun
  268. CAP_PVAPI_FSTRIGMODE_SYNCIN1 = 1, //!< SyncIn1
  269. CAP_PVAPI_FSTRIGMODE_SYNCIN2 = 2, //!< SyncIn2
  270. CAP_PVAPI_FSTRIGMODE_FIXEDRATE = 3, //!< FixedRate
  271. CAP_PVAPI_FSTRIGMODE_SOFTWARE = 4 //!< Software
  272. };
  273. //! PVAPI: DecimationHorizontal, DecimationVertical
  274. enum { CAP_PVAPI_DECIMATION_OFF = 1, //!< Off
  275. CAP_PVAPI_DECIMATION_2OUTOF4 = 2, //!< 2 out of 4 decimation
  276. CAP_PVAPI_DECIMATION_2OUTOF8 = 4, //!< 2 out of 8 decimation
  277. CAP_PVAPI_DECIMATION_2OUTOF16 = 8 //!< 2 out of 16 decimation
  278. };
  279. //! PVAPI: PixelFormat
  280. enum { CAP_PVAPI_PIXELFORMAT_MONO8 = 1, //!< Mono8
  281. CAP_PVAPI_PIXELFORMAT_MONO16 = 2, //!< Mono16
  282. CAP_PVAPI_PIXELFORMAT_BAYER8 = 3, //!< Bayer8
  283. CAP_PVAPI_PIXELFORMAT_BAYER16 = 4, //!< Bayer16
  284. CAP_PVAPI_PIXELFORMAT_RGB24 = 5, //!< Rgb24
  285. CAP_PVAPI_PIXELFORMAT_BGR24 = 6, //!< Bgr24
  286. CAP_PVAPI_PIXELFORMAT_RGBA32 = 7, //!< Rgba32
  287. CAP_PVAPI_PIXELFORMAT_BGRA32 = 8, //!< Bgra32
  288. };
  289. //! @} PvAPI
  290. /** @name XIMEA Camera API
  291. @{
  292. */
  293. //! Properties of cameras available through XIMEA SDK backend
  294. enum { CAP_PROP_XI_DOWNSAMPLING = 400, //!< Change image resolution by binning or skipping.
  295. CAP_PROP_XI_DATA_FORMAT = 401, //!< Output data format.
  296. CAP_PROP_XI_OFFSET_X = 402, //!< Horizontal offset from the origin to the area of interest (in pixels).
  297. CAP_PROP_XI_OFFSET_Y = 403, //!< Vertical offset from the origin to the area of interest (in pixels).
  298. CAP_PROP_XI_TRG_SOURCE = 404, //!< Defines source of trigger.
  299. CAP_PROP_XI_TRG_SOFTWARE = 405, //!< Generates an internal trigger. PRM_TRG_SOURCE must be set to TRG_SOFTWARE.
  300. CAP_PROP_XI_GPI_SELECTOR = 406, //!< Selects general purpose input.
  301. CAP_PROP_XI_GPI_MODE = 407, //!< Set general purpose input mode.
  302. CAP_PROP_XI_GPI_LEVEL = 408, //!< Get general purpose level.
  303. CAP_PROP_XI_GPO_SELECTOR = 409, //!< Selects general purpose output.
  304. CAP_PROP_XI_GPO_MODE = 410, //!< Set general purpose output mode.
  305. CAP_PROP_XI_LED_SELECTOR = 411, //!< Selects camera signalling LED.
  306. CAP_PROP_XI_LED_MODE = 412, //!< Define camera signalling LED functionality.
  307. CAP_PROP_XI_MANUAL_WB = 413, //!< Calculates White Balance(must be called during acquisition).
  308. CAP_PROP_XI_AUTO_WB = 414, //!< Automatic white balance.
  309. CAP_PROP_XI_AEAG = 415, //!< Automatic exposure/gain.
  310. CAP_PROP_XI_EXP_PRIORITY = 416, //!< Exposure priority (0.5 - exposure 50%, gain 50%).
  311. CAP_PROP_XI_AE_MAX_LIMIT = 417, //!< Maximum limit of exposure in AEAG procedure.
  312. CAP_PROP_XI_AG_MAX_LIMIT = 418, //!< Maximum limit of gain in AEAG procedure.
  313. CAP_PROP_XI_AEAG_LEVEL = 419, //!< Average intensity of output signal AEAG should achieve(in %).
  314. CAP_PROP_XI_TIMEOUT = 420, //!< Image capture timeout in milliseconds.
  315. CAP_PROP_XI_EXPOSURE = 421, //!< Exposure time in microseconds.
  316. CAP_PROP_XI_EXPOSURE_BURST_COUNT = 422, //!< Sets the number of times of exposure in one frame.
  317. CAP_PROP_XI_GAIN_SELECTOR = 423, //!< Gain selector for parameter Gain allows to select different type of gains.
  318. CAP_PROP_XI_GAIN = 424, //!< Gain in dB.
  319. CAP_PROP_XI_DOWNSAMPLING_TYPE = 426, //!< Change image downsampling type.
  320. CAP_PROP_XI_BINNING_SELECTOR = 427, //!< Binning engine selector.
  321. CAP_PROP_XI_BINNING_VERTICAL = 428, //!< Vertical Binning - number of vertical photo-sensitive cells to combine together.
  322. CAP_PROP_XI_BINNING_HORIZONTAL = 429, //!< Horizontal Binning - number of horizontal photo-sensitive cells to combine together.
  323. CAP_PROP_XI_BINNING_PATTERN = 430, //!< Binning pattern type.
  324. CAP_PROP_XI_DECIMATION_SELECTOR = 431, //!< Decimation engine selector.
  325. 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.
  326. 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.
  327. CAP_PROP_XI_DECIMATION_PATTERN = 434, //!< Decimation pattern type.
  328. CAP_PROP_XI_TEST_PATTERN_GENERATOR_SELECTOR = 587, //!< Selects which test pattern generator is controlled by the TestPattern feature.
  329. CAP_PROP_XI_TEST_PATTERN = 588, //!< Selects which test pattern type is generated by the selected generator.
  330. CAP_PROP_XI_IMAGE_DATA_FORMAT = 435, //!< Output data format.
  331. CAP_PROP_XI_SHUTTER_TYPE = 436, //!< Change sensor shutter type(CMOS sensor).
  332. CAP_PROP_XI_SENSOR_TAPS = 437, //!< Number of taps.
  333. CAP_PROP_XI_AEAG_ROI_OFFSET_X = 439, //!< Automatic exposure/gain ROI offset X.
  334. CAP_PROP_XI_AEAG_ROI_OFFSET_Y = 440, //!< Automatic exposure/gain ROI offset Y.
  335. CAP_PROP_XI_AEAG_ROI_WIDTH = 441, //!< Automatic exposure/gain ROI Width.
  336. CAP_PROP_XI_AEAG_ROI_HEIGHT = 442, //!< Automatic exposure/gain ROI Height.
  337. CAP_PROP_XI_BPC = 445, //!< Correction of bad pixels.
  338. CAP_PROP_XI_WB_KR = 448, //!< White balance red coefficient.
  339. CAP_PROP_XI_WB_KG = 449, //!< White balance green coefficient.
  340. CAP_PROP_XI_WB_KB = 450, //!< White balance blue coefficient.
  341. CAP_PROP_XI_WIDTH = 451, //!< Width of the Image provided by the device (in pixels).
  342. CAP_PROP_XI_HEIGHT = 452, //!< Height of the Image provided by the device (in pixels).
  343. CAP_PROP_XI_REGION_SELECTOR = 589, //!< Selects Region in Multiple ROI which parameters are set by width, height, ... ,region mode.
  344. CAP_PROP_XI_REGION_MODE = 595, //!< Activates/deactivates Region selected by Region Selector.
  345. CAP_PROP_XI_LIMIT_BANDWIDTH = 459, //!< Set/get bandwidth(datarate)(in Megabits).
  346. CAP_PROP_XI_SENSOR_DATA_BIT_DEPTH = 460, //!< Sensor output data bit depth.
  347. CAP_PROP_XI_OUTPUT_DATA_BIT_DEPTH = 461, //!< Device output data bit depth.
  348. CAP_PROP_XI_IMAGE_DATA_BIT_DEPTH = 462, //!< bitdepth of data returned by function xiGetImage.
  349. 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.
  350. CAP_PROP_XI_OUTPUT_DATA_PACKING_TYPE = 464, //!< Data packing type. Some cameras supports only specific packing type.
  351. CAP_PROP_XI_IS_COOLED = 465, //!< Returns 1 for cameras that support cooling.
  352. CAP_PROP_XI_COOLING = 466, //!< Start camera cooling.
  353. CAP_PROP_XI_TARGET_TEMP = 467, //!< Set sensor target temperature for cooling.
  354. CAP_PROP_XI_CHIP_TEMP = 468, //!< Camera sensor temperature.
  355. CAP_PROP_XI_HOUS_TEMP = 469, //!< Camera housing temperature.
  356. CAP_PROP_XI_HOUS_BACK_SIDE_TEMP = 590, //!< Camera housing back side temperature.
  357. CAP_PROP_XI_SENSOR_BOARD_TEMP = 596, //!< Camera sensor board temperature.
  358. CAP_PROP_XI_CMS = 470, //!< Mode of color management system.
  359. CAP_PROP_XI_APPLY_CMS = 471, //!< Enable applying of CMS profiles to xiGetImage (see XI_PRM_INPUT_CMS_PROFILE, XI_PRM_OUTPUT_CMS_PROFILE).
  360. CAP_PROP_XI_IMAGE_IS_COLOR = 474, //!< Returns 1 for color cameras.
  361. CAP_PROP_XI_COLOR_FILTER_ARRAY = 475, //!< Returns color filter array type of RAW data.
  362. CAP_PROP_XI_GAMMAY = 476, //!< Luminosity gamma.
  363. CAP_PROP_XI_GAMMAC = 477, //!< Chromaticity gamma.
  364. CAP_PROP_XI_SHARPNESS = 478, //!< Sharpness Strength.
  365. CAP_PROP_XI_CC_MATRIX_00 = 479, //!< Color Correction Matrix element [0][0].
  366. CAP_PROP_XI_CC_MATRIX_01 = 480, //!< Color Correction Matrix element [0][1].
  367. CAP_PROP_XI_CC_MATRIX_02 = 481, //!< Color Correction Matrix element [0][2].
  368. CAP_PROP_XI_CC_MATRIX_03 = 482, //!< Color Correction Matrix element [0][3].
  369. CAP_PROP_XI_CC_MATRIX_10 = 483, //!< Color Correction Matrix element [1][0].
  370. CAP_PROP_XI_CC_MATRIX_11 = 484, //!< Color Correction Matrix element [1][1].
  371. CAP_PROP_XI_CC_MATRIX_12 = 485, //!< Color Correction Matrix element [1][2].
  372. CAP_PROP_XI_CC_MATRIX_13 = 486, //!< Color Correction Matrix element [1][3].
  373. CAP_PROP_XI_CC_MATRIX_20 = 487, //!< Color Correction Matrix element [2][0].
  374. CAP_PROP_XI_CC_MATRIX_21 = 488, //!< Color Correction Matrix element [2][1].
  375. CAP_PROP_XI_CC_MATRIX_22 = 489, //!< Color Correction Matrix element [2][2].
  376. CAP_PROP_XI_CC_MATRIX_23 = 490, //!< Color Correction Matrix element [2][3].
  377. CAP_PROP_XI_CC_MATRIX_30 = 491, //!< Color Correction Matrix element [3][0].
  378. CAP_PROP_XI_CC_MATRIX_31 = 492, //!< Color Correction Matrix element [3][1].
  379. CAP_PROP_XI_CC_MATRIX_32 = 493, //!< Color Correction Matrix element [3][2].
  380. CAP_PROP_XI_CC_MATRIX_33 = 494, //!< Color Correction Matrix element [3][3].
  381. CAP_PROP_XI_DEFAULT_CC_MATRIX = 495, //!< Set default Color Correction Matrix.
  382. CAP_PROP_XI_TRG_SELECTOR = 498, //!< Selects the type of trigger.
  383. 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.
  384. CAP_PROP_XI_DEBOUNCE_EN = 507, //!< Enable/Disable debounce to selected GPI.
  385. CAP_PROP_XI_DEBOUNCE_T0 = 508, //!< Debounce time (x * 10us).
  386. CAP_PROP_XI_DEBOUNCE_T1 = 509, //!< Debounce time (x * 10us).
  387. CAP_PROP_XI_DEBOUNCE_POL = 510, //!< Debounce polarity (pol = 1 t0 - falling edge, t1 - rising edge).
  388. CAP_PROP_XI_LENS_MODE = 511, //!< Status of lens control interface. This shall be set to XI_ON before any Lens operations.
  389. CAP_PROP_XI_LENS_APERTURE_VALUE = 512, //!< Current lens aperture value in stops. Examples: 2.8, 4, 5.6, 8, 11.
  390. 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.
  391. CAP_PROP_XI_LENS_FOCUS_MOVE = 514, //!< Moves lens focus motor by steps set in XI_PRM_LENS_FOCUS_MOVEMENT_VALUE.
  392. CAP_PROP_XI_LENS_FOCUS_DISTANCE = 515, //!< Lens focus distance in cm.
  393. CAP_PROP_XI_LENS_FOCAL_LENGTH = 516, //!< Lens focal distance in mm.
  394. CAP_PROP_XI_LENS_FEATURE_SELECTOR = 517, //!< Selects the current feature which is accessible by XI_PRM_LENS_FEATURE.
  395. CAP_PROP_XI_LENS_FEATURE = 518, //!< Allows access to lens feature value currently selected by XI_PRM_LENS_FEATURE_SELECTOR.
  396. CAP_PROP_XI_DEVICE_MODEL_ID = 521, //!< Returns device model id.
  397. CAP_PROP_XI_DEVICE_SN = 522, //!< Returns device serial number.
  398. CAP_PROP_XI_IMAGE_DATA_FORMAT_RGB32_ALPHA = 529, //!< The alpha channel of RGB32 output image format.
  399. CAP_PROP_XI_IMAGE_PAYLOAD_SIZE = 530, //!< Buffer size in bytes sufficient for output image returned by xiGetImage.
  400. CAP_PROP_XI_TRANSPORT_PIXEL_FORMAT = 531, //!< Current format of pixels on transport layer.
  401. CAP_PROP_XI_SENSOR_CLOCK_FREQ_HZ = 532, //!< Sensor clock frequency in Hz.
  402. 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.
  403. CAP_PROP_XI_SENSOR_OUTPUT_CHANNEL_COUNT = 534, //!< Number of output channels from sensor used for data transfer.
  404. CAP_PROP_XI_FRAMERATE = 535, //!< Define framerate in Hz.
  405. CAP_PROP_XI_COUNTER_SELECTOR = 536, //!< Select counter.
  406. CAP_PROP_XI_COUNTER_VALUE = 537, //!< Counter status.
  407. CAP_PROP_XI_ACQ_TIMING_MODE = 538, //!< Type of sensor frames timing.
  408. CAP_PROP_XI_AVAILABLE_BANDWIDTH = 539, //!< Calculate and returns available interface bandwidth(int Megabits).
  409. CAP_PROP_XI_BUFFER_POLICY = 540, //!< Data move policy.
  410. CAP_PROP_XI_LUT_EN = 541, //!< Activates LUT.
  411. CAP_PROP_XI_LUT_INDEX = 542, //!< Control the index (offset) of the coefficient to access in the LUT.
  412. CAP_PROP_XI_LUT_VALUE = 543, //!< Value at entry LUTIndex of the LUT.
  413. CAP_PROP_XI_TRG_DELAY = 544, //!< Specifies the delay in microseconds (us) to apply after the trigger reception before activating it.
  414. CAP_PROP_XI_TS_RST_MODE = 545, //!< Defines how time stamp reset engine will be armed.
  415. 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).
  416. CAP_PROP_XI_IS_DEVICE_EXIST = 547, //!< Returns 1 if camera connected and works properly.
  417. CAP_PROP_XI_ACQ_BUFFER_SIZE = 548, //!< Acquisition buffer size in buffer_size_unit. Default bytes.
  418. 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.
  419. CAP_PROP_XI_ACQ_TRANSPORT_BUFFER_SIZE = 550, //!< Acquisition transport buffer size in bytes.
  420. CAP_PROP_XI_BUFFERS_QUEUE_SIZE = 551, //!< Queue of field/frame buffers.
  421. CAP_PROP_XI_ACQ_TRANSPORT_BUFFER_COMMIT = 552, //!< Number of buffers to commit to low level.
  422. CAP_PROP_XI_RECENT_FRAME = 553, //!< GetImage returns most recent frame.
  423. CAP_PROP_XI_DEVICE_RESET = 554, //!< Resets the camera to default state.
  424. CAP_PROP_XI_COLUMN_FPN_CORRECTION = 555, //!< Correction of column FPN.
  425. CAP_PROP_XI_ROW_FPN_CORRECTION = 591, //!< Correction of row FPN.
  426. 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.
  427. CAP_PROP_XI_HDR = 559, //!< Enable High Dynamic Range feature.
  428. CAP_PROP_XI_HDR_KNEEPOINT_COUNT = 560, //!< The number of kneepoints in the PWLR.
  429. CAP_PROP_XI_HDR_T1 = 561, //!< Position of first kneepoint(in % of XI_PRM_EXPOSURE).
  430. CAP_PROP_XI_HDR_T2 = 562, //!< Position of second kneepoint (in % of XI_PRM_EXPOSURE).
  431. CAP_PROP_XI_KNEEPOINT1 = 563, //!< Value of first kneepoint (% of sensor saturation).
  432. CAP_PROP_XI_KNEEPOINT2 = 564, //!< Value of second kneepoint (% of sensor saturation).
  433. CAP_PROP_XI_IMAGE_BLACK_LEVEL = 565, //!< Last image black level counts. Can be used for Offline processing to recall it.
  434. CAP_PROP_XI_HW_REVISION = 571, //!< Returns hardware revision number.
  435. CAP_PROP_XI_DEBUG_LEVEL = 572, //!< Set debug level.
  436. CAP_PROP_XI_AUTO_BANDWIDTH_CALCULATION = 573, //!< Automatic bandwidth calculation.
  437. CAP_PROP_XI_FFS_FILE_ID = 594, //!< File number.
  438. CAP_PROP_XI_FFS_FILE_SIZE = 580, //!< Size of file.
  439. CAP_PROP_XI_FREE_FFS_SIZE = 581, //!< Size of free camera FFS.
  440. CAP_PROP_XI_USED_FFS_SIZE = 582, //!< Size of used camera FFS.
  441. CAP_PROP_XI_FFS_ACCESS_KEY = 583, //!< Setting of key enables file operations on some cameras.
  442. CAP_PROP_XI_SENSOR_FEATURE_SELECTOR = 585, //!< Selects the current feature which is accessible by XI_PRM_SENSOR_FEATURE_VALUE.
  443. CAP_PROP_XI_SENSOR_FEATURE_VALUE = 586, //!< Allows access to sensor feature value currently selected by XI_PRM_SENSOR_FEATURE_SELECTOR.
  444. };
  445. //! @} XIMEA
  446. /** @name XIMEA Camera API
  447. * @{
  448. */
  449. //! Properties of cameras available through ARAVIS backend
  450. enum { CAP_PROP_ARAVIS_AUTOTRIGGER = 600 //!< Automatically trigger frame capture if camera is configured with software trigger
  451. };
  452. //! @} ARAVIS
  453. /** @name AVFoundation framework for iOS
  454. OS X Lion will have the same API
  455. @{
  456. */
  457. //! Properties of cameras available through AVFOUNDATION backend
  458. enum { CAP_PROP_IOS_DEVICE_FOCUS = 9001,
  459. CAP_PROP_IOS_DEVICE_EXPOSURE = 9002,
  460. CAP_PROP_IOS_DEVICE_FLASH = 9003,
  461. CAP_PROP_IOS_DEVICE_WHITEBALANCE = 9004,
  462. CAP_PROP_IOS_DEVICE_TORCH = 9005
  463. };
  464. /** @name Smartek Giganetix GigEVisionSDK
  465. @{
  466. */
  467. //! Properties of cameras available through Smartek Giganetix Ethernet Vision backend
  468. /* --- Vladimir Litvinenko (litvinenko.vladimir@gmail.com) --- */
  469. enum { CAP_PROP_GIGA_FRAME_OFFSET_X = 10001,
  470. CAP_PROP_GIGA_FRAME_OFFSET_Y = 10002,
  471. CAP_PROP_GIGA_FRAME_WIDTH_MAX = 10003,
  472. CAP_PROP_GIGA_FRAME_HEIGH_MAX = 10004,
  473. CAP_PROP_GIGA_FRAME_SENS_WIDTH = 10005,
  474. CAP_PROP_GIGA_FRAME_SENS_HEIGH = 10006
  475. };
  476. //! @} Smartek
  477. /** @name Intel Perceptual Computing SDK
  478. @{
  479. */
  480. enum { CAP_PROP_INTELPERC_PROFILE_COUNT = 11001,
  481. CAP_PROP_INTELPERC_PROFILE_IDX = 11002,
  482. CAP_PROP_INTELPERC_DEPTH_LOW_CONFIDENCE_VALUE = 11003,
  483. CAP_PROP_INTELPERC_DEPTH_SATURATION_VALUE = 11004,
  484. CAP_PROP_INTELPERC_DEPTH_CONFIDENCE_THRESHOLD = 11005,
  485. CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_HORZ = 11006,
  486. CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_VERT = 11007
  487. };
  488. //! Intel Perceptual Streams
  489. enum { CAP_INTELPERC_DEPTH_GENERATOR = 1 << 29,
  490. CAP_INTELPERC_IMAGE_GENERATOR = 1 << 28,
  491. CAP_INTELPERC_IR_GENERATOR = 1 << 27,
  492. CAP_INTELPERC_GENERATORS_MASK = CAP_INTELPERC_DEPTH_GENERATOR + CAP_INTELPERC_IMAGE_GENERATOR + CAP_INTELPERC_IR_GENERATOR
  493. };
  494. 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.
  495. 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.
  496. CAP_INTELPERC_IR_MAP = 2, //!< Each pixel is a 16-bit integer. The value indicates the intensity of the reflected laser beam.
  497. CAP_INTELPERC_IMAGE = 3
  498. };
  499. //! @} Intel Perceptual
  500. /** @name gPhoto2 connection
  501. @{
  502. */
  503. /** @brief gPhoto2 properties
  504. If `propertyId` is less than 0 then work on widget with that __additive inversed__ camera setting ID
  505. Get IDs by using CAP_PROP_GPHOTO2_WIDGET_ENUMERATE.
  506. @see CvCaptureCAM_GPHOTO2 for more info
  507. */
  508. enum { CAP_PROP_GPHOTO2_PREVIEW = 17001, //!< Capture only preview from liveview mode.
  509. CAP_PROP_GPHOTO2_WIDGET_ENUMERATE = 17002, //!< Readonly, returns (const char *).
  510. CAP_PROP_GPHOTO2_RELOAD_CONFIG = 17003, //!< Trigger, only by set. Reload camera settings.
  511. CAP_PROP_GPHOTO2_RELOAD_ON_CHANGE = 17004, //!< Reload all settings on set.
  512. CAP_PROP_GPHOTO2_COLLECT_MSGS = 17005, //!< Collect messages with details.
  513. CAP_PROP_GPHOTO2_FLUSH_MSGS = 17006, //!< Readonly, returns (const char *).
  514. CAP_PROP_SPEED = 17007, //!< Exposure speed. Can be readonly, depends on camera program.
  515. CAP_PROP_APERTURE = 17008, //!< Aperture. Can be readonly, depends on camera program.
  516. CAP_PROP_EXPOSUREPROGRAM = 17009, //!< Camera exposure program.
  517. CAP_PROP_VIEWFINDER = 17010 //!< Enter liveview mode.
  518. };
  519. //! @} gPhoto2
  520. /** @name Images backend
  521. @{
  522. */
  523. /** @brief Images backend properties
  524. */
  525. enum { CAP_PROP_IMAGES_BASE = 18000,
  526. CAP_PROP_IMAGES_LAST = 19000 // excluding
  527. };
  528. //! @} Images
  529. //! @} videoio_flags_others
  530. class IVideoCapture;
  531. //! @cond IGNORED
  532. namespace internal { class VideoCapturePrivateAccessor; }
  533. //! @endcond IGNORED
  534. /** @brief Class for video capturing from video files, image sequences or cameras.
  535. The class provides C++ API for capturing video from cameras or for reading video files and image sequences.
  536. Here is how the class can be used:
  537. @include samples/cpp/videocapture_basic.cpp
  538. @note In @ref videoio_c "C API" the black-box structure `CvCapture` is used instead of %VideoCapture.
  539. @note
  540. - (C++) A basic sample on using the %VideoCapture interface can be found at
  541. `OPENCV_SOURCE_CODE/samples/cpp/videocapture_starter.cpp`
  542. - (Python) A basic sample on using the %VideoCapture interface can be found at
  543. `OPENCV_SOURCE_CODE/samples/python/video.py`
  544. - (Python) A multi threaded video processing sample can be found at
  545. `OPENCV_SOURCE_CODE/samples/python/video_threaded.py`
  546. - (Python) %VideoCapture sample showcasing some features of the Video4Linux2 backend
  547. `OPENCV_SOURCE_CODE/samples/python/video_v4l2.py`
  548. */
  549. class CV_EXPORTS_W VideoCapture
  550. {
  551. public:
  552. /** @brief Default constructor
  553. @note In @ref videoio_c "C API", when you finished working with video, release CvCapture structure with
  554. cvReleaseCapture(), or use Ptr\<CvCapture\> that calls cvReleaseCapture() automatically in the
  555. destructor.
  556. */
  557. CV_WRAP VideoCapture();
  558. /** @overload
  559. @brief Opens a video file or a capturing device or an IP video stream for video capturing with API Preference
  560. @param filename it can be:
  561. - name of video file (eg. `video.avi`)
  562. - or image sequence (eg. `img_%02d.jpg`, which will read samples like `img_00.jpg, img_01.jpg, img_02.jpg, ...`)
  563. - or URL of video stream (eg. `protocol://host:port/script_name?script_params|auth`)
  564. - or GStreamer pipeline string in gst-launch tool format in case if GStreamer is used as backend
  565. Note that each video stream or IP camera feed has its own URL scheme. Please refer to the
  566. documentation of source stream to know the right URL.
  567. @param apiPreference preferred Capture API backends to use. Can be used to enforce a specific reader
  568. implementation if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_IMAGES or cv::CAP_DSHOW.
  569. @sa cv::VideoCaptureAPIs
  570. */
  571. CV_WRAP explicit VideoCapture(const String& filename, int apiPreference = CAP_ANY);
  572. /** @overload
  573. @brief Opens a camera for video capturing
  574. @param index id of the video capturing device to open. To open default camera using default backend just pass 0.
  575. (to backward compatibility usage of camera_id + domain_offset (CAP_*) is valid when apiPreference is CAP_ANY)
  576. @param apiPreference preferred Capture API backends to use. Can be used to enforce a specific reader
  577. implementation if multiple are available: e.g. cv::CAP_DSHOW or cv::CAP_MSMF or cv::CAP_V4L.
  578. @sa cv::VideoCaptureAPIs
  579. */
  580. CV_WRAP explicit VideoCapture(int index, int apiPreference = CAP_ANY);
  581. /** @brief Default destructor
  582. The method first calls VideoCapture::release to close the already opened file or camera.
  583. */
  584. virtual ~VideoCapture();
  585. /** @brief Opens a video file or a capturing device or an IP video stream for video capturing.
  586. @overload
  587. Parameters are same as the constructor VideoCapture(const String& filename, int apiPreference = CAP_ANY)
  588. @return `true` if the file has been successfully opened
  589. The method first calls VideoCapture::release to close the already opened file or camera.
  590. */
  591. CV_WRAP virtual bool open(const String& filename, int apiPreference = CAP_ANY);
  592. /** @brief Opens a camera for video capturing
  593. @overload
  594. Parameters are same as the constructor VideoCapture(int index, int apiPreference = CAP_ANY)
  595. @return `true` if the camera has been successfully opened.
  596. The method first calls VideoCapture::release to close the already opened file or camera.
  597. */
  598. CV_WRAP virtual bool open(int index, int apiPreference = CAP_ANY);
  599. /** @brief Returns true if video capturing has been initialized already.
  600. If the previous call to VideoCapture constructor or VideoCapture::open() succeeded, the method returns
  601. true.
  602. */
  603. CV_WRAP virtual bool isOpened() const;
  604. /** @brief Closes video file or capturing device.
  605. The method is automatically called by subsequent VideoCapture::open and by VideoCapture
  606. destructor.
  607. The C function also deallocates memory and clears \*capture pointer.
  608. */
  609. CV_WRAP virtual void release();
  610. /** @brief Grabs the next frame from video file or capturing device.
  611. @return `true` (non-zero) in the case of success.
  612. The method/function grabs the next frame from video file or camera and returns true (non-zero) in
  613. the case of success.
  614. The primary use of the function is in multi-camera environments, especially when the cameras do not
  615. have hardware synchronization. That is, you call VideoCapture::grab() for each camera and after that
  616. call the slower method VideoCapture::retrieve() to decode and get frame from each camera. This way
  617. the overhead on demosaicing or motion jpeg decompression etc. is eliminated and the retrieved frames
  618. from different cameras will be closer in time.
  619. Also, when a connected camera is multi-head (for example, a stereo camera or a Kinect device), the
  620. correct way of retrieving data from it is to call VideoCapture::grab() first and then call
  621. VideoCapture::retrieve() one or more times with different values of the channel parameter.
  622. @ref tutorial_kinect_openni
  623. */
  624. CV_WRAP virtual bool grab();
  625. /** @brief Decodes and returns the grabbed video frame.
  626. @param [out] image the video frame is returned here. If no frames has been grabbed the image will be empty.
  627. @param flag it could be a frame index or a driver specific flag
  628. @return `false` if no frames has been grabbed
  629. The method decodes and returns the just grabbed frame. If no frames has been grabbed
  630. (camera has been disconnected, or there are no more frames in video file), the method returns false
  631. and the function returns an empty image (with %cv::Mat, test it with Mat::empty()).
  632. @sa read()
  633. @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video
  634. capturing structure. It is not allowed to modify or release the image! You can copy the frame using
  635. cvCloneImage and then do whatever you want with the copy.
  636. */
  637. CV_WRAP virtual bool retrieve(OutputArray image, int flag = 0);
  638. /** @brief Stream operator to read the next video frame.
  639. @sa read()
  640. */
  641. virtual VideoCapture& operator >> (CV_OUT Mat& image);
  642. /** @overload
  643. @sa read()
  644. */
  645. virtual VideoCapture& operator >> (CV_OUT UMat& image);
  646. /** @brief Grabs, decodes and returns the next video frame.
  647. @param [out] image the video frame is returned here. If no frames has been grabbed the image will be empty.
  648. @return `false` if no frames has been grabbed
  649. The method/function combines VideoCapture::grab() and VideoCapture::retrieve() in one call. This is the
  650. most convenient method for reading video files or capturing data from decode and returns the just
  651. grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more
  652. frames in video file), the method returns false and the function returns empty image (with %cv::Mat, test it with Mat::empty()).
  653. @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video
  654. capturing structure. It is not allowed to modify or release the image! You can copy the frame using
  655. cvCloneImage and then do whatever you want with the copy.
  656. */
  657. CV_WRAP virtual bool read(OutputArray image);
  658. /** @brief Sets a property in the VideoCapture.
  659. @param propId Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...)
  660. or one from @ref videoio_flags_others
  661. @param value Value of the property.
  662. @return `true` if the property is supported by backend used by the VideoCapture instance.
  663. @note Even if it returns `true` this doesn't ensure that the property
  664. value has been accepted by the capture device. See note in VideoCapture::get()
  665. */
  666. CV_WRAP virtual bool set(int propId, double value);
  667. /** @brief Returns the specified VideoCapture property
  668. @param propId Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...)
  669. or one from @ref videoio_flags_others
  670. @return Value for the specified property. Value 0 is returned when querying a property that is
  671. not supported by the backend used by the VideoCapture instance.
  672. @note Reading / writing properties involves many layers. Some unexpected result might happens
  673. along this chain.
  674. @code{.txt}
  675. VideoCapture -> API Backend -> Operating System -> Device Driver -> Device Hardware
  676. @endcode
  677. The returned value might be different from what really used by the device or it could be encoded
  678. using device dependent rules (eg. steps or percentage). Effective behaviour depends from device
  679. driver and API Backend
  680. */
  681. CV_WRAP virtual double get(int propId) const;
  682. /** @brief Returns used backend API name
  683. @note Stream should be opened.
  684. */
  685. CV_WRAP String getBackendName() const;
  686. /** Switches exceptions mode
  687. *
  688. * methods raise exceptions if not successful instead of returning an error code
  689. */
  690. CV_WRAP void setExceptionMode(bool enable) { throwOnFail = enable; }
  691. /// query if exception mode is active
  692. CV_WRAP bool getExceptionMode() { return throwOnFail; }
  693. /** @brief Wait for ready frames from VideoCapture.
  694. @param streams input video streams
  695. @param readyIndex stream indexes with grabbed frames (ready to use .retrieve() to fetch actual frame)
  696. @param timeoutNs number of nanoseconds (0 - infinite)
  697. @return `true` if streamReady is not empty
  698. @throws Exception %Exception on stream errors (check .isOpened() to filter out malformed streams) or VideoCapture type is not supported
  699. The primary use of the function is in multi-camera environments.
  700. The method fills the ready state vector, grabbs video frame, if camera is ready.
  701. After this call use VideoCapture::retrieve() to decode and fetch frame data.
  702. */
  703. static /*CV_WRAP*/
  704. bool waitAny(
  705. const std::vector<VideoCapture>& streams,
  706. CV_OUT std::vector<int>& readyIndex,
  707. int64 timeoutNs = 0);
  708. protected:
  709. Ptr<CvCapture> cap;
  710. Ptr<IVideoCapture> icap;
  711. bool throwOnFail;
  712. friend class internal::VideoCapturePrivateAccessor;
  713. };
  714. class IVideoWriter;
  715. /** @example samples/cpp/tutorial_code/videoio/video-write/video-write.cpp
  716. Check @ref tutorial_video_write "the corresponding tutorial" for more details
  717. */
  718. /** @example samples/cpp/videowriter_basic.cpp
  719. An example using VideoCapture and VideoWriter class
  720. */
  721. /** @brief Video writer class.
  722. The class provides C++ API for writing video files or image sequences.
  723. */
  724. class CV_EXPORTS_W VideoWriter
  725. {
  726. public:
  727. /** @brief Default constructors
  728. The constructors/functions initialize video writers.
  729. - On Linux FFMPEG is used to write videos;
  730. - On Windows FFMPEG or MSWF or DSHOW is used;
  731. - On MacOSX AVFoundation is used.
  732. */
  733. CV_WRAP VideoWriter();
  734. /** @overload
  735. @param filename Name of the output video file.
  736. @param fourcc 4-character code of codec used to compress the frames. For example,
  737. VideoWriter::fourcc('P','I','M','1') is a MPEG-1 codec, VideoWriter::fourcc('M','J','P','G') is a
  738. motion-jpeg codec etc. List of codes can be obtained at [Video Codecs by
  739. FOURCC](http://www.fourcc.org/codecs.php) page. FFMPEG backend with MP4 container natively uses
  740. other values as fourcc code: see [ObjectType](http://www.mp4ra.org/codecs.html),
  741. so you may receive a warning message from OpenCV about fourcc code conversion.
  742. @param fps Framerate of the created video stream.
  743. @param frameSize Size of the video frames.
  744. @param isColor If it is not zero, the encoder will expect and encode color frames, otherwise it
  745. will work with grayscale frames (the flag is currently supported on Windows only).
  746. @b Tips:
  747. - With some backends `fourcc=-1` pops up the codec selection dialog from the system.
  748. - To save image sequence use a proper filename (eg. `img_%02d.jpg`) and `fourcc=0`
  749. OR `fps=0`. Use uncompressed image format (eg. `img_%02d.BMP`) to save raw frames.
  750. - Most codecs are lossy. If you want lossless video file you need to use a lossless codecs
  751. (eg. FFMPEG FFV1, Huffman HFYU, Lagarith LAGS, etc...)
  752. - If FFMPEG is enabled, using `codec=0; fps=0;` you can create an uncompressed (raw) video file.
  753. */
  754. CV_WRAP VideoWriter(const String& filename, int fourcc, double fps,
  755. Size frameSize, bool isColor = true);
  756. /** @overload
  757. The `apiPreference` parameter allows to specify API backends to use. Can be used to enforce a specific reader implementation
  758. if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_GSTREAMER.
  759. */
  760. CV_WRAP VideoWriter(const String& filename, int apiPreference, int fourcc, double fps,
  761. Size frameSize, bool isColor = true);
  762. /** @brief Default destructor
  763. The method first calls VideoWriter::release to close the already opened file.
  764. */
  765. virtual ~VideoWriter();
  766. /** @brief Initializes or reinitializes video writer.
  767. The method opens video writer. Parameters are the same as in the constructor
  768. VideoWriter::VideoWriter.
  769. @return `true` if video writer has been successfully initialized
  770. The method first calls VideoWriter::release to close the already opened file.
  771. */
  772. CV_WRAP virtual bool open(const String& filename, int fourcc, double fps,
  773. Size frameSize, bool isColor = true);
  774. /** @overload
  775. */
  776. CV_WRAP bool open(const String& filename, int apiPreference, int fourcc, double fps,
  777. Size frameSize, bool isColor = true);
  778. /** @brief Returns true if video writer has been successfully initialized.
  779. */
  780. CV_WRAP virtual bool isOpened() const;
  781. /** @brief Closes the video writer.
  782. The method is automatically called by subsequent VideoWriter::open and by the VideoWriter
  783. destructor.
  784. */
  785. CV_WRAP virtual void release();
  786. /** @brief Stream operator to write the next video frame.
  787. @sa write
  788. */
  789. virtual VideoWriter& operator << (const Mat& image);
  790. /** @overload
  791. @sa write
  792. */
  793. virtual VideoWriter& operator << (const UMat& image);
  794. /** @brief Writes the next video frame
  795. @param image The written frame. In general, color images are expected in BGR format.
  796. The function/method writes the specified image to video file. It must have the same size as has
  797. been specified when opening the video writer.
  798. */
  799. CV_WRAP virtual void write(InputArray image);
  800. /** @brief Sets a property in the VideoWriter.
  801. @param propId Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY)
  802. or one of @ref videoio_flags_others
  803. @param value Value of the property.
  804. @return `true` if the property is supported by the backend used by the VideoWriter instance.
  805. */
  806. CV_WRAP virtual bool set(int propId, double value);
  807. /** @brief Returns the specified VideoWriter property
  808. @param propId Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY)
  809. or one of @ref videoio_flags_others
  810. @return Value for the specified property. Value 0 is returned when querying a property that is
  811. not supported by the backend used by the VideoWriter instance.
  812. */
  813. CV_WRAP virtual double get(int propId) const;
  814. /** @brief Concatenates 4 chars to a fourcc code
  815. @return a fourcc code
  816. This static method constructs the fourcc code of the codec to be used in the constructor
  817. VideoWriter::VideoWriter or VideoWriter::open.
  818. */
  819. CV_WRAP static int fourcc(char c1, char c2, char c3, char c4);
  820. /** @brief Returns used backend API name
  821. @note Stream should be opened.
  822. */
  823. CV_WRAP String getBackendName() const;
  824. protected:
  825. Ptr<CvVideoWriter> writer;
  826. Ptr<IVideoWriter> iwriter;
  827. static Ptr<IVideoWriter> create(const String& filename, int fourcc, double fps,
  828. Size frameSize, bool isColor = true);
  829. };
  830. template<> struct DefaultDeleter<CvCapture>{ CV_EXPORTS void operator ()(CvCapture* obj) const; };
  831. template<> struct DefaultDeleter<CvVideoWriter>{ CV_EXPORTS void operator ()(CvVideoWriter* obj) const; };
  832. //! @} videoio
  833. } // cv
  834. #endif //OPENCV_VIDEOIO_HPP