videoio.hpp 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  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 Media I/O
  47. @{
  48. @defgroup videoio_c C API
  49. @defgroup videoio_ios iOS glue
  50. @defgroup videoio_winrt WinRT glue
  51. @}
  52. */
  53. ////////////////////////////////// video io /////////////////////////////////
  54. typedef struct CvCapture CvCapture;
  55. typedef struct CvVideoWriter CvVideoWriter;
  56. namespace cv
  57. {
  58. //! @addtogroup videoio
  59. //! @{
  60. // Camera API
  61. enum { CAP_ANY = 0, // autodetect
  62. CAP_VFW = 200, // platform native
  63. CAP_V4L = 200,
  64. CAP_V4L2 = CAP_V4L,
  65. CAP_FIREWARE = 300, // IEEE 1394 drivers
  66. CAP_FIREWIRE = CAP_FIREWARE,
  67. CAP_IEEE1394 = CAP_FIREWARE,
  68. CAP_DC1394 = CAP_FIREWARE,
  69. CAP_CMU1394 = CAP_FIREWARE,
  70. CAP_QT = 500, // QuickTime
  71. CAP_UNICAP = 600, // Unicap drivers
  72. CAP_DSHOW = 700, // DirectShow (via videoInput)
  73. CAP_PVAPI = 800, // PvAPI, Prosilica GigE SDK
  74. CAP_OPENNI = 900, // OpenNI (for Kinect)
  75. CAP_OPENNI_ASUS = 910, // OpenNI (for Asus Xtion)
  76. CAP_ANDROID = 1000, // Android - not used
  77. CAP_XIAPI = 1100, // XIMEA Camera API
  78. CAP_AVFOUNDATION = 1200, // AVFoundation framework for iOS (OS X Lion will have the same API)
  79. CAP_GIGANETIX = 1300, // Smartek Giganetix GigEVisionSDK
  80. CAP_MSMF = 1400, // Microsoft Media Foundation (via videoInput)
  81. CAP_WINRT = 1410, // Microsoft Windows Runtime using Media Foundation
  82. CAP_INTELPERC = 1500, // Intel Perceptual Computing SDK
  83. CAP_OPENNI2 = 1600, // OpenNI2 (for Kinect)
  84. CAP_OPENNI2_ASUS = 1610, // OpenNI2 (for Asus Xtion and Occipital Structure sensors)
  85. CAP_GPHOTO2 = 1700, // gPhoto2 connection
  86. CAP_GSTREAMER = 1800, // GStreamer
  87. CAP_FFMPEG = 1900, // FFMPEG
  88. CAP_IMAGES = 2000 // OpenCV Image Sequence (e.g. img_%02d.jpg)
  89. };
  90. // generic properties (based on DC1394 properties)
  91. enum { CAP_PROP_POS_MSEC =0,
  92. CAP_PROP_POS_FRAMES =1,
  93. CAP_PROP_POS_AVI_RATIO =2,
  94. CAP_PROP_FRAME_WIDTH =3,
  95. CAP_PROP_FRAME_HEIGHT =4,
  96. CAP_PROP_FPS =5,
  97. CAP_PROP_FOURCC =6,
  98. CAP_PROP_FRAME_COUNT =7,
  99. CAP_PROP_FORMAT =8,
  100. CAP_PROP_MODE =9,
  101. CAP_PROP_BRIGHTNESS =10,
  102. CAP_PROP_CONTRAST =11,
  103. CAP_PROP_SATURATION =12,
  104. CAP_PROP_HUE =13,
  105. CAP_PROP_GAIN =14,
  106. CAP_PROP_EXPOSURE =15,
  107. CAP_PROP_CONVERT_RGB =16,
  108. CAP_PROP_WHITE_BALANCE_BLUE_U =17,
  109. CAP_PROP_RECTIFICATION =18,
  110. CAP_PROP_MONOCHROME =19,
  111. CAP_PROP_SHARPNESS =20,
  112. CAP_PROP_AUTO_EXPOSURE =21, // DC1394: exposure control done by camera, user can adjust refernce level using this feature
  113. CAP_PROP_GAMMA =22,
  114. CAP_PROP_TEMPERATURE =23,
  115. CAP_PROP_TRIGGER =24,
  116. CAP_PROP_TRIGGER_DELAY =25,
  117. CAP_PROP_WHITE_BALANCE_RED_V =26,
  118. CAP_PROP_ZOOM =27,
  119. CAP_PROP_FOCUS =28,
  120. CAP_PROP_GUID =29,
  121. CAP_PROP_ISO_SPEED =30,
  122. CAP_PROP_BACKLIGHT =32,
  123. CAP_PROP_PAN =33,
  124. CAP_PROP_TILT =34,
  125. CAP_PROP_ROLL =35,
  126. CAP_PROP_IRIS =36,
  127. CAP_PROP_SETTINGS =37,
  128. CAP_PROP_BUFFERSIZE =38,
  129. CAP_PROP_AUTOFOCUS =39
  130. };
  131. // Generic camera output modes.
  132. // Currently, these are supported through the libv4l interface only.
  133. enum { CAP_MODE_BGR = 0, // BGR24 (default)
  134. CAP_MODE_RGB = 1, // RGB24
  135. CAP_MODE_GRAY = 2, // Y8
  136. CAP_MODE_YUYV = 3 // YUYV
  137. };
  138. // DC1394 only
  139. // modes of the controlling registers (can be: auto, manual, auto single push, absolute Latter allowed with any other mode)
  140. // every feature can have only one mode turned on at a time
  141. enum { CAP_PROP_DC1394_OFF = -4, //turn the feature off (not controlled manually nor automatically)
  142. CAP_PROP_DC1394_MODE_MANUAL = -3, //set automatically when a value of the feature is set by the user
  143. CAP_PROP_DC1394_MODE_AUTO = -2,
  144. CAP_PROP_DC1394_MODE_ONE_PUSH_AUTO = -1,
  145. CAP_PROP_DC1394_MAX = 31
  146. };
  147. // OpenNI map generators
  148. enum { CAP_OPENNI_DEPTH_GENERATOR = 1 << 31,
  149. CAP_OPENNI_IMAGE_GENERATOR = 1 << 30,
  150. CAP_OPENNI_GENERATORS_MASK = CAP_OPENNI_DEPTH_GENERATOR + CAP_OPENNI_IMAGE_GENERATOR
  151. };
  152. // Properties of cameras available through OpenNI interfaces
  153. enum { CAP_PROP_OPENNI_OUTPUT_MODE = 100,
  154. CAP_PROP_OPENNI_FRAME_MAX_DEPTH = 101, // in mm
  155. CAP_PROP_OPENNI_BASELINE = 102, // in mm
  156. CAP_PROP_OPENNI_FOCAL_LENGTH = 103, // in pixels
  157. CAP_PROP_OPENNI_REGISTRATION = 104, // flag that synchronizes the remapping depth map to image map
  158. // by changing depth generator's view point (if the flag is "on") or
  159. // sets this view point to its normal one (if the flag is "off").
  160. CAP_PROP_OPENNI_REGISTRATION_ON = CAP_PROP_OPENNI_REGISTRATION,
  161. CAP_PROP_OPENNI_APPROX_FRAME_SYNC = 105,
  162. CAP_PROP_OPENNI_MAX_BUFFER_SIZE = 106,
  163. CAP_PROP_OPENNI_CIRCLE_BUFFER = 107,
  164. CAP_PROP_OPENNI_MAX_TIME_DURATION = 108,
  165. CAP_PROP_OPENNI_GENERATOR_PRESENT = 109,
  166. CAP_PROP_OPENNI2_SYNC = 110,
  167. CAP_PROP_OPENNI2_MIRROR = 111
  168. };
  169. // OpenNI shortcats
  170. enum { CAP_OPENNI_IMAGE_GENERATOR_PRESENT = CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT,
  171. CAP_OPENNI_IMAGE_GENERATOR_OUTPUT_MODE = CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_OUTPUT_MODE,
  172. CAP_OPENNI_DEPTH_GENERATOR_BASELINE = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_BASELINE,
  173. CAP_OPENNI_DEPTH_GENERATOR_FOCAL_LENGTH = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_FOCAL_LENGTH,
  174. CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION = CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_REGISTRATION,
  175. CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION_ON = CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION
  176. };
  177. // OpenNI data given from depth generator
  178. enum { CAP_OPENNI_DEPTH_MAP = 0, // Depth values in mm (CV_16UC1)
  179. CAP_OPENNI_POINT_CLOUD_MAP = 1, // XYZ in meters (CV_32FC3)
  180. CAP_OPENNI_DISPARITY_MAP = 2, // Disparity in pixels (CV_8UC1)
  181. CAP_OPENNI_DISPARITY_MAP_32F = 3, // Disparity in pixels (CV_32FC1)
  182. CAP_OPENNI_VALID_DEPTH_MASK = 4, // CV_8UC1
  183. // Data given from RGB image generator
  184. CAP_OPENNI_BGR_IMAGE = 5,
  185. CAP_OPENNI_GRAY_IMAGE = 6
  186. };
  187. // Supported output modes of OpenNI image generator
  188. enum { CAP_OPENNI_VGA_30HZ = 0,
  189. CAP_OPENNI_SXGA_15HZ = 1,
  190. CAP_OPENNI_SXGA_30HZ = 2,
  191. CAP_OPENNI_QVGA_30HZ = 3,
  192. CAP_OPENNI_QVGA_60HZ = 4
  193. };
  194. // GStreamer
  195. enum { CAP_PROP_GSTREAMER_QUEUE_LENGTH = 200 // default is 1
  196. };
  197. // PVAPI
  198. enum { CAP_PROP_PVAPI_MULTICASTIP = 300, // ip for anable multicast master mode. 0 for disable multicast
  199. CAP_PROP_PVAPI_FRAMESTARTTRIGGERMODE = 301, // FrameStartTriggerMode: Determines how a frame is initiated
  200. CAP_PROP_PVAPI_DECIMATIONHORIZONTAL = 302, // Horizontal sub-sampling of the image
  201. CAP_PROP_PVAPI_DECIMATIONVERTICAL = 303, // Vertical sub-sampling of the image
  202. CAP_PROP_PVAPI_BINNINGX = 304, // Horizontal binning factor
  203. CAP_PROP_PVAPI_BINNINGY = 305, // Vertical binning factor
  204. CAP_PROP_PVAPI_PIXELFORMAT = 306 // Pixel format
  205. };
  206. // PVAPI: FrameStartTriggerMode
  207. enum { CAP_PVAPI_FSTRIGMODE_FREERUN = 0, // Freerun
  208. CAP_PVAPI_FSTRIGMODE_SYNCIN1 = 1, // SyncIn1
  209. CAP_PVAPI_FSTRIGMODE_SYNCIN2 = 2, // SyncIn2
  210. CAP_PVAPI_FSTRIGMODE_FIXEDRATE = 3, // FixedRate
  211. CAP_PVAPI_FSTRIGMODE_SOFTWARE = 4 // Software
  212. };
  213. // PVAPI: DecimationHorizontal, DecimationVertical
  214. enum { CAP_PVAPI_DECIMATION_OFF = 1, // Off
  215. CAP_PVAPI_DECIMATION_2OUTOF4 = 2, // 2 out of 4 decimation
  216. CAP_PVAPI_DECIMATION_2OUTOF8 = 4, // 2 out of 8 decimation
  217. CAP_PVAPI_DECIMATION_2OUTOF16 = 8 // 2 out of 16 decimation
  218. };
  219. // PVAPI: PixelFormat
  220. enum { CAP_PVAPI_PIXELFORMAT_MONO8 = 1, // Mono8
  221. CAP_PVAPI_PIXELFORMAT_MONO16 = 2, // Mono16
  222. CAP_PVAPI_PIXELFORMAT_BAYER8 = 3, // Bayer8
  223. CAP_PVAPI_PIXELFORMAT_BAYER16 = 4, // Bayer16
  224. CAP_PVAPI_PIXELFORMAT_RGB24 = 5, // Rgb24
  225. CAP_PVAPI_PIXELFORMAT_BGR24 = 6, // Bgr24
  226. CAP_PVAPI_PIXELFORMAT_RGBA32 = 7, // Rgba32
  227. CAP_PVAPI_PIXELFORMAT_BGRA32 = 8, // Bgra32
  228. };
  229. // Properties of cameras available through XIMEA SDK interface
  230. enum { CAP_PROP_XI_DOWNSAMPLING = 400, // Change image resolution by binning or skipping.
  231. CAP_PROP_XI_DATA_FORMAT = 401, // Output data format.
  232. CAP_PROP_XI_OFFSET_X = 402, // Horizontal offset from the origin to the area of interest (in pixels).
  233. CAP_PROP_XI_OFFSET_Y = 403, // Vertical offset from the origin to the area of interest (in pixels).
  234. CAP_PROP_XI_TRG_SOURCE = 404, // Defines source of trigger.
  235. CAP_PROP_XI_TRG_SOFTWARE = 405, // Generates an internal trigger. PRM_TRG_SOURCE must be set to TRG_SOFTWARE.
  236. CAP_PROP_XI_GPI_SELECTOR = 406, // Selects general purpose input
  237. CAP_PROP_XI_GPI_MODE = 407, // Set general purpose input mode
  238. CAP_PROP_XI_GPI_LEVEL = 408, // Get general purpose level
  239. CAP_PROP_XI_GPO_SELECTOR = 409, // Selects general purpose output
  240. CAP_PROP_XI_GPO_MODE = 410, // Set general purpose output mode
  241. CAP_PROP_XI_LED_SELECTOR = 411, // Selects camera signalling LED
  242. CAP_PROP_XI_LED_MODE = 412, // Define camera signalling LED functionality
  243. CAP_PROP_XI_MANUAL_WB = 413, // Calculates White Balance(must be called during acquisition)
  244. CAP_PROP_XI_AUTO_WB = 414, // Automatic white balance
  245. CAP_PROP_XI_AEAG = 415, // Automatic exposure/gain
  246. CAP_PROP_XI_EXP_PRIORITY = 416, // Exposure priority (0.5 - exposure 50%, gain 50%).
  247. CAP_PROP_XI_AE_MAX_LIMIT = 417, // Maximum limit of exposure in AEAG procedure
  248. CAP_PROP_XI_AG_MAX_LIMIT = 418, // Maximum limit of gain in AEAG procedure
  249. CAP_PROP_XI_AEAG_LEVEL = 419, // Average intensity of output signal AEAG should achieve(in %)
  250. CAP_PROP_XI_TIMEOUT = 420 // Image capture timeout in milliseconds
  251. };
  252. // Properties of cameras available through AVFOUNDATION interface
  253. enum { CAP_PROP_IOS_DEVICE_FOCUS = 9001,
  254. CAP_PROP_IOS_DEVICE_EXPOSURE = 9002,
  255. CAP_PROP_IOS_DEVICE_FLASH = 9003,
  256. CAP_PROP_IOS_DEVICE_WHITEBALANCE = 9004,
  257. CAP_PROP_IOS_DEVICE_TORCH = 9005
  258. };
  259. // Properties of cameras available through Smartek Giganetix Ethernet Vision interface
  260. /* --- Vladimir Litvinenko (litvinenko.vladimir@gmail.com) --- */
  261. enum { CAP_PROP_GIGA_FRAME_OFFSET_X = 10001,
  262. CAP_PROP_GIGA_FRAME_OFFSET_Y = 10002,
  263. CAP_PROP_GIGA_FRAME_WIDTH_MAX = 10003,
  264. CAP_PROP_GIGA_FRAME_HEIGH_MAX = 10004,
  265. CAP_PROP_GIGA_FRAME_SENS_WIDTH = 10005,
  266. CAP_PROP_GIGA_FRAME_SENS_HEIGH = 10006
  267. };
  268. enum { CAP_PROP_INTELPERC_PROFILE_COUNT = 11001,
  269. CAP_PROP_INTELPERC_PROFILE_IDX = 11002,
  270. CAP_PROP_INTELPERC_DEPTH_LOW_CONFIDENCE_VALUE = 11003,
  271. CAP_PROP_INTELPERC_DEPTH_SATURATION_VALUE = 11004,
  272. CAP_PROP_INTELPERC_DEPTH_CONFIDENCE_THRESHOLD = 11005,
  273. CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_HORZ = 11006,
  274. CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_VERT = 11007
  275. };
  276. // Intel PerC streams
  277. enum { CAP_INTELPERC_DEPTH_GENERATOR = 1 << 29,
  278. CAP_INTELPERC_IMAGE_GENERATOR = 1 << 28,
  279. CAP_INTELPERC_GENERATORS_MASK = CAP_INTELPERC_DEPTH_GENERATOR + CAP_INTELPERC_IMAGE_GENERATOR
  280. };
  281. 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.
  282. 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.
  283. CAP_INTELPERC_IR_MAP = 2, // Each pixel is a 16-bit integer. The value indicates the intensity of the reflected laser beam.
  284. CAP_INTELPERC_IMAGE = 3
  285. };
  286. enum { VIDEOWRITER_PROP_QUALITY = 1, // Quality (0..100%) of the videostream encoded
  287. VIDEOWRITER_PROP_FRAMEBYTES = 2, // (Read-only): Size of just encoded video frame
  288. VIDEOWRITER_PROP_NSTRIPES = 3 // Number of stripes for parallel encoding. -1 for auto detection
  289. };
  290. // gPhoto2 properties, if propertyId is less than 0 then work on widget with that __additive inversed__ camera setting ID
  291. // Get IDs by using CAP_PROP_GPHOTO2_WIDGET_ENUMERATE.
  292. // @see CvCaptureCAM_GPHOTO2 for more info
  293. enum { CAP_PROP_GPHOTO2_PREVIEW = 17001, // Capture only preview from liveview mode.
  294. CAP_PROP_GPHOTO2_WIDGET_ENUMERATE = 17002, // Readonly, returns (const char *).
  295. CAP_PROP_GPHOTO2_RELOAD_CONFIG = 17003, // Trigger, only by set. Reload camera settings.
  296. CAP_PROP_GPHOTO2_RELOAD_ON_CHANGE = 17004, // Reload all settings on set.
  297. CAP_PROP_GPHOTO2_COLLECT_MSGS = 17005, // Collect messages with details.
  298. CAP_PROP_GPHOTO2_FLUSH_MSGS = 17006, // Readonly, returns (const char *).
  299. CAP_PROP_SPEED = 17007, // Exposure speed. Can be readonly, depends on camera program.
  300. CAP_PROP_APERTURE = 17008, // Aperture. Can be readonly, depends on camera program.
  301. CAP_PROP_EXPOSUREPROGRAM = 17009, // Camera exposure program.
  302. CAP_PROP_VIEWFINDER = 17010 // Enter liveview mode.
  303. };
  304. //enum {
  305. class IVideoCapture;
  306. /** @brief Class for video capturing from video files, image sequences or cameras. The class provides C++ API
  307. for capturing video from cameras or for reading video files and image sequences. Here is how the
  308. class can be used: :
  309. @code
  310. #include "opencv2/opencv.hpp"
  311. using namespace cv;
  312. int main(int, char**)
  313. {
  314. VideoCapture cap(0); // open the default camera
  315. if(!cap.isOpened()) // check if we succeeded
  316. return -1;
  317. Mat edges;
  318. namedWindow("edges",1);
  319. for(;;)
  320. {
  321. Mat frame;
  322. cap >> frame; // get a new frame from camera
  323. cvtColor(frame, edges, COLOR_BGR2GRAY);
  324. GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
  325. Canny(edges, edges, 0, 30, 3);
  326. imshow("edges", edges);
  327. if(waitKey(30) >= 0) break;
  328. }
  329. // the camera will be deinitialized automatically in VideoCapture destructor
  330. return 0;
  331. }
  332. @endcode
  333. @note In C API the black-box structure CvCapture is used instead of VideoCapture.
  334. @note
  335. - A basic sample on using the VideoCapture interface can be found at
  336. opencv_source_code/samples/cpp/starter_video.cpp
  337. - Another basic video processing sample can be found at
  338. opencv_source_code/samples/cpp/video_dmtx.cpp
  339. - (Python) A basic sample on using the VideoCapture interface can be found at
  340. opencv_source_code/samples/python/video.py
  341. - (Python) Another basic video processing sample can be found at
  342. opencv_source_code/samples/python/video_dmtx.py
  343. - (Python) A multi threaded video processing sample can be found at
  344. opencv_source_code/samples/python/video_threaded.py
  345. */
  346. class CV_EXPORTS_W VideoCapture
  347. {
  348. public:
  349. /** @brief
  350. @note In C API, when you finished working with video, release CvCapture structure with
  351. cvReleaseCapture(), or use Ptr\<CvCapture\> that calls cvReleaseCapture() automatically in the
  352. destructor.
  353. */
  354. CV_WRAP VideoCapture();
  355. /** @overload
  356. @param filename name of the opened video file (eg. video.avi) or image sequence (eg.
  357. img_%02d.jpg, which will read samples like img_00.jpg, img_01.jpg, img_02.jpg, ...)
  358. */
  359. CV_WRAP VideoCapture(const String& filename);
  360. /** @overload
  361. @param filename name of the opened video file (eg. video.avi) or image sequence (eg.
  362. img_%02d.jpg, which will read samples like img_00.jpg, img_01.jpg, img_02.jpg, ...)
  363. @param apiPreference preferred Capture API to use. Can be used to enforce a specific reader
  364. implementation if multiple are available: e.g. CAP_FFMPEG or CAP_IMAGES
  365. */
  366. CV_WRAP VideoCapture(const String& filename, int apiPreference);
  367. /** @overload
  368. @param index = camera_id + domain_offset (CAP_*). id of the video capturing device to open. If there is a single
  369. camera connected, just pass 0. Advanced Usage: to open Camera 1 using the MS Media Foundation API: index = 1 + CAP_MSMF
  370. */
  371. CV_WRAP VideoCapture(int index);
  372. virtual ~VideoCapture();
  373. /** @brief Open video file or a capturing device for video capturing
  374. @param filename name of the opened video file (eg. video.avi) or image sequence (eg.
  375. img_%02d.jpg, which will read samples like img_00.jpg, img_01.jpg, img_02.jpg, ...)
  376. The methods first call VideoCapture::release to close the already opened file or camera.
  377. */
  378. CV_WRAP virtual bool open(const String& filename);
  379. /** @overload
  380. @param index = camera_id + domain_offset (CAP_*). id of the video capturing device to open. If there is a single
  381. camera connected, just pass 0. Advanced Usage: to open Camera 1 using the MS Media Foundation API: index = 1 + CAP_MSMF
  382. */
  383. CV_WRAP virtual bool open(int index);
  384. /** @brief Returns true if video capturing has been initialized already.
  385. If the previous call to VideoCapture constructor or VideoCapture::open succeeded, the method returns
  386. true.
  387. */
  388. CV_WRAP virtual bool isOpened() const;
  389. /** @brief Closes video file or capturing device.
  390. The methods are automatically called by subsequent VideoCapture::open and by VideoCapture
  391. destructor.
  392. The C function also deallocates memory and clears \*capture pointer.
  393. */
  394. CV_WRAP virtual void release();
  395. /** @brief Grabs the next frame from video file or capturing device.
  396. The methods/functions grab the next frame from video file or camera and return true (non-zero) in
  397. the case of success.
  398. The primary use of the function is in multi-camera environments, especially when the cameras do not
  399. have hardware synchronization. That is, you call VideoCapture::grab() for each camera and after that
  400. call the slower method VideoCapture::retrieve() to decode and get frame from each camera. This way
  401. the overhead on demosaicing or motion jpeg decompression etc. is eliminated and the retrieved frames
  402. from different cameras will be closer in time.
  403. Also, when a connected camera is multi-head (for example, a stereo camera or a Kinect device), the
  404. correct way of retrieving data from it is to call VideoCapture::grab first and then call
  405. VideoCapture::retrieve one or more times with different values of the channel parameter. See
  406. <https://github.com/Itseez/opencv/tree/master/samples/cpp/openni_capture.cpp>
  407. */
  408. CV_WRAP virtual bool grab();
  409. /** @brief Decodes and returns the grabbed video frame.
  410. The methods/functions decode and return the just grabbed frame. If no frames has been grabbed
  411. (camera has been disconnected, or there are no more frames in video file), the methods return false
  412. and the functions return NULL pointer.
  413. @note OpenCV 1.x functions cvRetrieveFrame and cv.RetrieveFrame return image stored inside the video
  414. capturing structure. It is not allowed to modify or release the image! You can copy the frame using
  415. :ocvcvCloneImage and then do whatever you want with the copy.
  416. */
  417. CV_WRAP virtual bool retrieve(OutputArray image, int flag = 0);
  418. virtual VideoCapture& operator >> (CV_OUT Mat& image);
  419. virtual VideoCapture& operator >> (CV_OUT UMat& image);
  420. /** @brief Grabs, decodes and returns the next video frame.
  421. The methods/functions combine VideoCapture::grab and VideoCapture::retrieve in one call. This is the
  422. most convenient method for reading video files or capturing data from decode and return the just
  423. grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more
  424. frames in video file), the methods return false and the functions return NULL pointer.
  425. @note OpenCV 1.x functions cvRetrieveFrame and cv.RetrieveFrame return image stored inside the video
  426. capturing structure. It is not allowed to modify or release the image! You can copy the frame using
  427. :ocvcvCloneImage and then do whatever you want with the copy.
  428. */
  429. CV_WRAP virtual bool read(OutputArray image);
  430. /** @brief Sets a property in the VideoCapture.
  431. @param propId Property identifier. It can be one of the following:
  432. - **CAP_PROP_POS_MSEC** Current position of the video file in milliseconds.
  433. - **CAP_PROP_POS_FRAMES** 0-based index of the frame to be decoded/captured next.
  434. - **CAP_PROP_POS_AVI_RATIO** Relative position of the video file: 0 - start of the
  435. film, 1 - end of the film.
  436. - **CAP_PROP_FRAME_WIDTH** Width of the frames in the video stream.
  437. - **CAP_PROP_FRAME_HEIGHT** Height of the frames in the video stream.
  438. - **CAP_PROP_FPS** Frame rate.
  439. - **CAP_PROP_FOURCC** 4-character code of codec.
  440. - **CAP_PROP_FRAME_COUNT** Number of frames in the video file.
  441. - **CAP_PROP_FORMAT** Format of the Mat objects returned by retrieve() .
  442. - **CAP_PROP_MODE** Backend-specific value indicating the current capture mode.
  443. - **CAP_PROP_BRIGHTNESS** Brightness of the image (only for cameras).
  444. - **CAP_PROP_CONTRAST** Contrast of the image (only for cameras).
  445. - **CAP_PROP_SATURATION** Saturation of the image (only for cameras).
  446. - **CAP_PROP_HUE** Hue of the image (only for cameras).
  447. - **CAP_PROP_GAIN** Gain of the image (only for cameras).
  448. - **CAP_PROP_EXPOSURE** Exposure (only for cameras).
  449. - **CAP_PROP_CONVERT_RGB** Boolean flags indicating whether images should be converted
  450. to RGB.
  451. - **CAP_PROP_WHITE_BALANCE** Currently unsupported
  452. - **CAP_PROP_RECTIFICATION** Rectification flag for stereo cameras (note: only supported
  453. by DC1394 v 2.x backend currently)
  454. @param value Value of the property.
  455. */
  456. CV_WRAP virtual bool set(int propId, double value);
  457. /** @brief Returns the specified VideoCapture property
  458. @param propId Property identifier. It can be one of the following:
  459. - **CAP_PROP_POS_MSEC** Current position of the video file in milliseconds or video
  460. capture timestamp.
  461. - **CAP_PROP_POS_FRAMES** 0-based index of the frame to be decoded/captured next.
  462. - **CAP_PROP_POS_AVI_RATIO** Relative position of the video file: 0 - start of the
  463. film, 1 - end of the film.
  464. - **CAP_PROP_FRAME_WIDTH** Width of the frames in the video stream.
  465. - **CAP_PROP_FRAME_HEIGHT** Height of the frames in the video stream.
  466. - **CAP_PROP_FPS** Frame rate.
  467. - **CAP_PROP_FOURCC** 4-character code of codec.
  468. - **CAP_PROP_FRAME_COUNT** Number of frames in the video file.
  469. - **CAP_PROP_FORMAT** Format of the Mat objects returned by retrieve() .
  470. - **CAP_PROP_MODE** Backend-specific value indicating the current capture mode.
  471. - **CAP_PROP_BRIGHTNESS** Brightness of the image (only for cameras).
  472. - **CAP_PROP_CONTRAST** Contrast of the image (only for cameras).
  473. - **CAP_PROP_SATURATION** Saturation of the image (only for cameras).
  474. - **CAP_PROP_HUE** Hue of the image (only for cameras).
  475. - **CAP_PROP_GAIN** Gain of the image (only for cameras).
  476. - **CAP_PROP_EXPOSURE** Exposure (only for cameras).
  477. - **CAP_PROP_CONVERT_RGB** Boolean flags indicating whether images should be converted
  478. to RGB.
  479. - **CAP_PROP_WHITE_BALANCE** Currently not supported
  480. - **CAP_PROP_RECTIFICATION** Rectification flag for stereo cameras (note: only supported
  481. by DC1394 v 2.x backend currently)
  482. @note When querying a property that is not supported by the backend used by the VideoCapture
  483. class, value 0 is returned.
  484. */
  485. CV_WRAP virtual double get(int propId) const;
  486. /** @overload
  487. @param filename name of the opened video file (eg. video.avi) or image sequence (eg.
  488. img_%02d.jpg, which will read samples like img_00.jpg, img_01.jpg, img_02.jpg, ...)
  489. @param apiPreference preferred Capture API to use. Can be used to enforce a specific reader
  490. implementation if multiple are available: e.g. CAP_FFMPEG or CAP_IMAGES
  491. The methods first call VideoCapture::release to close the already opened file or camera.
  492. */
  493. CV_WRAP virtual bool open(const String& filename, int apiPreference);
  494. protected:
  495. Ptr<CvCapture> cap;
  496. Ptr<IVideoCapture> icap;
  497. };
  498. class IVideoWriter;
  499. /** @brief Video writer class.
  500. */
  501. class CV_EXPORTS_W VideoWriter
  502. {
  503. public:
  504. /** @brief VideoWriter constructors
  505. The constructors/functions initialize video writers. On Linux FFMPEG is used to write videos; on
  506. Windows FFMPEG or VFW is used; on MacOSX QTKit is used.
  507. */
  508. CV_WRAP VideoWriter();
  509. /** @overload
  510. @param filename Name of the output video file.
  511. @param fourcc 4-character code of codec used to compress the frames. For example,
  512. VideoWriter::fourcc('P','I','M','1') is a MPEG-1 codec, VideoWriter::fourcc('M','J','P','G') is a
  513. motion-jpeg codec etc. List of codes can be obtained at [Video Codecs by
  514. FOURCC](http://www.fourcc.org/codecs.php) page. FFMPEG backend with MP4 container natively uses
  515. other values as fourcc code: see [ObjectType](http://www.mp4ra.org/codecs.html),
  516. so you may receive a warning message from OpenCV about fourcc code conversion.
  517. @param fps Framerate of the created video stream.
  518. @param frameSize Size of the video frames.
  519. @param isColor If it is not zero, the encoder will expect and encode color frames, otherwise it
  520. will work with grayscale frames (the flag is currently supported on Windows only).
  521. */
  522. CV_WRAP VideoWriter(const String& filename, int fourcc, double fps,
  523. Size frameSize, bool isColor = true);
  524. virtual ~VideoWriter();
  525. /** @brief Initializes or reinitializes video writer.
  526. The method opens video writer. Parameters are the same as in the constructor
  527. VideoWriter::VideoWriter.
  528. */
  529. CV_WRAP virtual bool open(const String& filename, int fourcc, double fps,
  530. Size frameSize, bool isColor = true);
  531. /** @brief Returns true if video writer has been successfully initialized.
  532. */
  533. CV_WRAP virtual bool isOpened() const;
  534. /** @brief Closes the video writer.
  535. The methods are automatically called by subsequent VideoWriter::open and by the VideoWriter
  536. destructor.
  537. */
  538. CV_WRAP virtual void release();
  539. virtual VideoWriter& operator << (const Mat& image);
  540. /** @brief Writes the next video frame
  541. @param image The written frame
  542. The functions/methods write the specified image to video file. It must have the same size as has
  543. been specified when opening the video writer.
  544. */
  545. CV_WRAP virtual void write(const Mat& image);
  546. /** @brief Sets a property in the VideoWriter.
  547. @param propId Property identifier. It can be one of the following:
  548. - **VIDEOWRITER_PROP_QUALITY** Quality (0..100%) of the videostream encoded. Can be adjusted dynamically in some codecs.
  549. - **VIDEOWRITER_PROP_NSTRIPES** Number of stripes for parallel encoding
  550. @param value Value of the property.
  551. */
  552. CV_WRAP virtual bool set(int propId, double value);
  553. /** @brief Returns the specified VideoWriter property
  554. @param propId Property identifier. It can be one of the following:
  555. - **VIDEOWRITER_PROP_QUALITY** Current quality of the encoded videostream.
  556. - **VIDEOWRITER_PROP_FRAMEBYTES** (Read-only) Size of just encoded video frame; note that the encoding order may be different from representation order.
  557. - **VIDEOWRITER_PROP_NSTRIPES** Number of stripes for parallel encoding
  558. @note When querying a property that is not supported by the backend used by the VideoWriter
  559. class, value 0 is returned.
  560. */
  561. CV_WRAP virtual double get(int propId) const;
  562. /** @brief Concatenates 4 chars to a fourcc code
  563. This static method constructs the fourcc code of the codec to be used in the constructor
  564. VideoWriter::VideoWriter or VideoWriter::open.
  565. */
  566. CV_WRAP static int fourcc(char c1, char c2, char c3, char c4);
  567. protected:
  568. Ptr<CvVideoWriter> writer;
  569. Ptr<IVideoWriter> iwriter;
  570. static Ptr<IVideoWriter> create(const String& filename, int fourcc, double fps,
  571. Size frameSize, bool isColor = true);
  572. };
  573. template<> CV_EXPORTS void DefaultDeleter<CvCapture>::operator ()(CvCapture* obj) const;
  574. template<> CV_EXPORTS void DefaultDeleter<CvVideoWriter>::operator ()(CvVideoWriter* obj) const;
  575. //! @} videoio
  576. } // cv
  577. #endif //__OPENCV_VIDEOIO_HPP__