The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PDL::OpenCV::Videoio - PDL bindings for OpenCV VideoCapture, VideoWriter

SYNOPSIS

 use PDL::OpenCV::Videoio;

FUNCTIONS

None.

METHODS for PDL::OpenCV::VideoCapture

Class for video capturing from video files, image sequences or cameras.

The class provides C++ API for capturing video from cameras or for reading video files and image sequences. Here is how the class can be used: @include samples/cpp/videocapture_basic.cpp @note In @ref videoio_c "C API" the black-box structure `CvCapture` is used instead of %VideoCapture. @note - (C++) A basic sample on using the %VideoCapture interface can be found at `OPENCV_SOURCE_CODE/samples/cpp/videocapture_starter.cpp` - (Python) A basic sample on using the %VideoCapture interface can be found at `OPENCV_SOURCE_CODE/samples/python/video.py` - (Python) A multi threaded video processing sample can be found at `OPENCV_SOURCE_CODE/samples/python/video_threaded.py` - (Python) %VideoCapture sample showcasing some features of the Video4Linux2 backend `OPENCV_SOURCE_CODE/samples/python/video_v4l2.py`

new

Default constructor

 $obj = PDL::OpenCV::VideoCapture->new;

@note In @ref videoio_c "C API", when you finished working with video, release CvCapture structure with cvReleaseCapture(), or use Ptr\<CvCapture\> that calls cvReleaseCapture() automatically in the destructor.

new2

Opens a video file or a capturing device or an IP video stream for video capturing with API Preference

 $obj = PDL::OpenCV::VideoCapture->new2($filename); # with defaults
 $obj = PDL::OpenCV::VideoCapture->new2($filename,$apiPreference);

@overload

Parameters:

filename

it can be: - name of video file (eg. `video.avi`) - or image sequence (eg. `img_%02d.jpg`, which will read samples like `img_00.jpg, img_01.jpg, img_02.jpg, ...`) - or URL of video stream (eg. `protocol://host:port/script_name?script_params|auth`) - or GStreamer pipeline string in gst-launch tool format in case if GStreamer is used as backend Note that each video stream or IP camera feed has its own URL scheme. Please refer to the documentation of source stream to know the right URL.

apiPreference

preferred Capture API backends to use. Can be used to enforce a specific reader implementation if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_IMAGES or cv::CAP_DSHOW.

See also: cv::VideoCaptureAPIs

VideoCapture_new3

  Signature: (int [phys] apiPreference(); int [phys] params(n4d0); char * klass; StringWrapper* filename; [o] VideoCaptureWrapper * res)

Opens a video file or a capturing device or an IP video stream for video capturing with API Preference and parameters

 $obj = PDL::OpenCV::VideoCapture->new3($filename,$apiPreference,$params);

@overload The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`. See cv::VideoCaptureProperties

VideoCapture_new3 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

new4

Opens a camera for video capturing

 $obj = PDL::OpenCV::VideoCapture->new4($index); # with defaults
 $obj = PDL::OpenCV::VideoCapture->new4($index,$apiPreference);

@overload

Parameters:

index

id of the video capturing device to open. To open default camera using default backend just pass 0. (to backward compatibility usage of camera_id + domain_offset (CAP_*) is valid when apiPreference is CAP_ANY)

apiPreference

preferred Capture API backends to use. Can be used to enforce a specific reader implementation if multiple are available: e.g. cv::CAP_DSHOW or cv::CAP_MSMF or cv::CAP_V4L.

See also: cv::VideoCaptureAPIs

VideoCapture_new5

  Signature: (int [phys] index(); int [phys] apiPreference(); int [phys] params(n4d0); char * klass; [o] VideoCaptureWrapper * res)

Opens a camera for video capturing with API Preference and parameters

 $obj = PDL::OpenCV::VideoCapture->new5($index,$apiPreference,$params);

@overload The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`. See cv::VideoCaptureProperties

VideoCapture_new5 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

open

Opens a video file or a capturing device or an IP video stream for video capturing.

 $res = $obj->open($filename); # with defaults
 $res = $obj->open($filename,$apiPreference);

@overload Parameters are same as the constructor VideoCapture(const String& filename, int apiPreference = CAP_ANY) The method first calls VideoCapture::release to close the already opened file or camera.

Returns: `true` if the file has been successfully opened

VideoCapture_open2

  Signature: (int [phys] apiPreference(); int [phys] params(n4d0); byte [o,phys] res(); VideoCaptureWrapper * self; StringWrapper* filename)

Opens a camera for video capturing

 $res = $obj->open2($filename,$apiPreference,$params);

@overload The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`. See cv::VideoCaptureProperties The method first calls VideoCapture::release to close the already opened file or camera.

Returns: `true` if the file has been successfully opened

VideoCapture_open2 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

open3

Opens a camera for video capturing

 $res = $obj->open3($index); # with defaults
 $res = $obj->open3($index,$apiPreference);

@overload Parameters are same as the constructor VideoCapture(int index, int apiPreference = CAP_ANY) The method first calls VideoCapture::release to close the already opened file or camera.

Returns: `true` if the camera has been successfully opened.

VideoCapture_open4

  Signature: (int [phys] index(); int [phys] apiPreference(); int [phys] params(n4d0); byte [o,phys] res(); VideoCaptureWrapper * self)

Returns true if video capturing has been initialized already.

 $res = $obj->open4($index,$apiPreference,$params);

@overload The `params` parameter allows to specify extra parameters encoded as pairs `(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`. See cv::VideoCaptureProperties The method first calls VideoCapture::release to close the already opened file or camera.

Returns: `true` if the camera has been successfully opened.

VideoCapture_open4 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

isOpened

Returns true if video capturing has been initialized already.

 $res = $obj->isOpened;

If the previous call to VideoCapture constructor or VideoCapture::open() succeeded, the method returns true.

release

Closes video file or capturing device.

 $obj->release;

The method is automatically called by subsequent VideoCapture::open and by VideoCapture destructor. The C function also deallocates memory and clears *capture pointer.

grab

Grabs the next frame from video file or capturing device.

 $res = $obj->grab;

The method/function grabs the next frame from video file or camera and returns true (non-zero) in the case of success. The primary use of the function is in multi-camera environments, especially when the cameras do not have hardware synchronization. That is, you call VideoCapture::grab() for each camera and after that call the slower method VideoCapture::retrieve() to decode and get frame from each camera. This way the overhead on demosaicing or motion jpeg decompression etc. is eliminated and the retrieved frames from different cameras will be closer in time. Also, when a connected camera is multi-head (for example, a stereo camera or a Kinect device), the correct way of retrieving data from it is to call VideoCapture::grab() first and then call VideoCapture::retrieve() one or more times with different values of the channel parameter. @ref tutorial_kinect_openni

Returns: `true` (non-zero) in the case of success.

VideoCapture_retrieve

  Signature: ([o,phys] image(l2,c2,r2); int [phys] flag(); byte [o,phys] res(); VideoCaptureWrapper * self)

Decodes and returns the grabbed video frame. NO BROADCASTING.

 ($image,$res) = $obj->retrieve; # with defaults
 ($image,$res) = $obj->retrieve($flag);

The method decodes and returns the just grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more frames in video file), the method returns false and the function returns an empty image (with %cv::Mat, test it with Mat::empty()). @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video capturing structure. It is not allowed to modify or release the image! You can copy the frame using cvCloneImage and then do whatever you want with the copy.

Parameters:

[out] image

the video frame is returned here. If no frames has been grabbed the image will be empty.

flag

it could be a frame index or a driver specific flag

Returns: `false` if no frames has been grabbed

See also: read()

VideoCapture_retrieve ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoCapture_read

  Signature: ([o,phys] image(l2,c2,r2); byte [o,phys] res(); VideoCaptureWrapper * self)

Grabs, decodes and returns the next video frame. NO BROADCASTING.

 ($image,$res) = $obj->read;

The method/function combines VideoCapture::grab() and VideoCapture::retrieve() in one call. This is the most convenient method for reading video files or capturing data from decode and returns the just grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more frames in video file), the method returns false and the function returns empty image (with %cv::Mat, test it with Mat::empty()). @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video capturing structure. It is not allowed to modify or release the image! You can copy the frame using cvCloneImage and then do whatever you want with the copy.

Parameters:

[out] image

the video frame is returned here. If no frames has been grabbed the image will be empty.

Returns: `false` if no frames has been grabbed

VideoCapture_read ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

set

Sets a property in the VideoCapture.

 $res = $obj->set($propId,$value);

@ref videoio_flags_others @note Even if it returns `true` this doesn't ensure that the property value has been accepted by the capture device. See note in VideoCapture::get()

Parameters:

propId

Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...) or one from

value

Value of the property.

Returns: `true` if the property is supported by backend used by the VideoCapture instance.

get

Returns the specified VideoCapture property

 $res = $obj->get($propId);

@ref videoio_flags_others @note Reading / writing properties involves many layers. Some unexpected result might happens along this chain.

 {.txt}
     VideoCapture -> API Backend -> Operating System -> Device Driver -> Device Hardware

The returned value might be different from what really used by the device or it could be encoded using device dependent rules (eg. steps or percentage). Effective behaviour depends from device driver and API Backend

Parameters:

propId

Property identifier from cv::VideoCaptureProperties (eg. cv::CAP_PROP_POS_MSEC, cv::CAP_PROP_POS_FRAMES, ...) or one from

Returns: Value for the specified property. Value 0 is returned when querying a property that is not supported by the backend used by the VideoCapture instance.

getBackendName

Returns used backend API name

 $res = $obj->getBackendName;

@note Stream should be opened.

setExceptionMode

 $obj->setExceptionMode($enable);

Switches exceptions mode * * methods raise exceptions if not successful instead of returning an error code

getExceptionMode

 $res = $obj->getExceptionMode;

METHODS for PDL::OpenCV::VideoWriter

Video writer class.

The class provides C++ API for writing video files or image sequences.

new

Default constructors

 $obj = PDL::OpenCV::VideoWriter->new;

The constructors/functions initialize video writers. - On Linux FFMPEG is used to write videos; - On Windows FFMPEG or MSWF or DSHOW is used; - On MacOSX AVFoundation is used.

VideoWriter_new2

  Signature: (int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n5=2); byte [phys] isColor(); char * klass; StringWrapper* filename; [o] VideoWriterWrapper * res)
 $obj = PDL::OpenCV::VideoWriter->new2($filename,$fourcc,$fps,$frameSize); # with defaults
 $obj = PDL::OpenCV::VideoWriter->new2($filename,$fourcc,$fps,$frameSize,$isColor);

@overload @b Tips: - With some backends `fourcc=-1` pops up the codec selection dialog from the system. - To save image sequence use a proper filename (eg. `img_%02d.jpg`) and `fourcc=0` OR `fps=0`. Use uncompressed image format (eg. `img_%02d.BMP`) to save raw frames. - Most codecs are lossy. If you want lossless video file you need to use a lossless codecs (eg. FFMPEG FFV1, Huffman HFYU, Lagarith LAGS, etc...) - If FFMPEG is enabled, using `codec=0; fps=0;` you can create an uncompressed (raw) video file.

Parameters:

filename

Name of the output video file.

fourcc

4-character code of codec used to compress the frames. For example, VideoWriter::fourcc('P','I','M','1') is a MPEG-1 codec, VideoWriter::fourcc('M','J','P','G') is a motion-jpeg codec etc. List of codes can be obtained at [Video Codecs by FOURCC](http://www.fourcc.org/codecs.php) page. FFMPEG backend with MP4 container natively uses other values as fourcc code: see [ObjectType](http://mp4ra.org/#/codecs), so you may receive a warning message from OpenCV about fourcc code conversion.

fps

Framerate of the created video stream.

frameSize

Size of the video frames.

isColor

If it is not zero, the encoder will expect and encode color frames, otherwise it will work with grayscale frames.

VideoWriter_new2 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_new3

  Signature: (int [phys] apiPreference(); int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n6=2); byte [phys] isColor(); char * klass; StringWrapper* filename; [o] VideoWriterWrapper * res)
 $obj = PDL::OpenCV::VideoWriter->new3($filename,$apiPreference,$fourcc,$fps,$frameSize); # with defaults
 $obj = PDL::OpenCV::VideoWriter->new3($filename,$apiPreference,$fourcc,$fps,$frameSize,$isColor);

@overload The `apiPreference` parameter allows to specify API backends to use. Can be used to enforce a specific reader implementation if multiple are available: e.g. cv::CAP_FFMPEG or cv::CAP_GSTREAMER.

VideoWriter_new3 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_new4

  Signature: (int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n5=2); int [phys] params(n6d0); char * klass; StringWrapper* filename; [o] VideoWriterWrapper * res)
 $obj = PDL::OpenCV::VideoWriter->new4($filename,$fourcc,$fps,$frameSize,$params);

@overload * The `params` parameter allows to specify extra encoder parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .) * see cv::VideoWriterProperties

VideoWriter_new4 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_new5

  Signature: (int [phys] apiPreference(); int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n6=2); int [phys] params(n7d0); char * klass; StringWrapper* filename; [o] VideoWriterWrapper * res)
 $obj = PDL::OpenCV::VideoWriter->new5($filename,$apiPreference,$fourcc,$fps,$frameSize,$params);

@overload

VideoWriter_new5 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_open

  Signature: (int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n5=2); byte [phys] isColor(); byte [o,phys] res(); VideoWriterWrapper * self; StringWrapper* filename)

Initializes or reinitializes video writer.

 $res = $obj->open($filename,$fourcc,$fps,$frameSize); # with defaults
 $res = $obj->open($filename,$fourcc,$fps,$frameSize,$isColor);

The method opens video writer. Parameters are the same as in the constructor VideoWriter::VideoWriter. The method first calls VideoWriter::release to close the already opened file.

Returns: `true` if video writer has been successfully initialized

VideoWriter_open ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_open2

  Signature: (int [phys] apiPreference(); int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n6=2); byte [phys] isColor(); byte [o,phys] res(); VideoWriterWrapper * self; StringWrapper* filename)
 $res = $obj->open2($filename,$apiPreference,$fourcc,$fps,$frameSize); # with defaults
 $res = $obj->open2($filename,$apiPreference,$fourcc,$fps,$frameSize,$isColor);

@overload

VideoWriter_open2 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_open3

  Signature: (int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n5=2); int [phys] params(n6d0); byte [o,phys] res(); VideoWriterWrapper * self; StringWrapper* filename)
 $res = $obj->open3($filename,$fourcc,$fps,$frameSize,$params);

@overload

VideoWriter_open3 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

VideoWriter_open4

  Signature: (int [phys] apiPreference(); int [phys] fourcc(); double [phys] fps(); indx [phys] frameSize(n6=2); int [phys] params(n7d0); byte [o,phys] res(); VideoWriterWrapper * self; StringWrapper* filename)
 $res = $obj->open4($filename,$apiPreference,$fourcc,$fps,$frameSize,$params);

@overload

VideoWriter_open4 ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

isOpened

Returns true if video writer has been successfully initialized.

 $res = $obj->isOpened;

release

Closes the video writer.

 $obj->release;

The method is automatically called by subsequent VideoWriter::open and by the VideoWriter destructor.

VideoWriter_write

  Signature: ([phys] image(l2,c2,r2); VideoWriterWrapper * self)

Writes the next video frame

 $obj->write($image);

The function/method writes the specified image to video file. It must have the same size as has been specified when opening the video writer.

Parameters:

image

The written frame. In general, color images are expected in BGR format.

VideoWriter_write ignores the bad-value flag of the input ndarrays. It will set the bad-value flag of all output ndarrays if the flag is set for any of the input ndarrays.

set

Sets a property in the VideoWriter.

 $res = $obj->set($propId,$value);

@ref videoio_flags_others

Parameters:

propId

Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY) or one of

value

Value of the property.

Returns: `true` if the property is supported by the backend used by the VideoWriter instance.

get

Returns the specified VideoWriter property

 $res = $obj->get($propId);

@ref videoio_flags_others

Parameters:

propId

Property identifier from cv::VideoWriterProperties (eg. cv::VIDEOWRITER_PROP_QUALITY) or one of

Returns: Value for the specified property. Value 0 is returned when querying a property that is not supported by the backend used by the VideoWriter instance.

fourcc

Concatenates 4 chars to a fourcc code

 $res = PDL::OpenCV::VideoWriter::fourcc($c1,$c2,$c3,$c4);

This static method constructs the fourcc code of the codec to be used in the constructor VideoWriter::VideoWriter or VideoWriter::open.

Returns: a fourcc code

getBackendName

Returns used backend API name

 $res = $obj->getBackendName;

@note Stream should be opened.

CONSTANTS

PDL::OpenCV::Videoio::CAP_ANY()
PDL::OpenCV::Videoio::CAP_VFW()
PDL::OpenCV::Videoio::CAP_V4L()
PDL::OpenCV::Videoio::CAP_V4L2()
PDL::OpenCV::Videoio::CAP_FIREWIRE()
PDL::OpenCV::Videoio::CAP_FIREWARE()
PDL::OpenCV::Videoio::CAP_IEEE1394()
PDL::OpenCV::Videoio::CAP_DC1394()
PDL::OpenCV::Videoio::CAP_CMU1394()
PDL::OpenCV::Videoio::CAP_QT()
PDL::OpenCV::Videoio::CAP_UNICAP()
PDL::OpenCV::Videoio::CAP_DSHOW()
PDL::OpenCV::Videoio::CAP_PVAPI()
PDL::OpenCV::Videoio::CAP_OPENNI()
PDL::OpenCV::Videoio::CAP_OPENNI_ASUS()
PDL::OpenCV::Videoio::CAP_ANDROID()
PDL::OpenCV::Videoio::CAP_XIAPI()
PDL::OpenCV::Videoio::CAP_AVFOUNDATION()
PDL::OpenCV::Videoio::CAP_GIGANETIX()
PDL::OpenCV::Videoio::CAP_MSMF()
PDL::OpenCV::Videoio::CAP_WINRT()
PDL::OpenCV::Videoio::CAP_INTELPERC()
PDL::OpenCV::Videoio::CAP_REALSENSE()
PDL::OpenCV::Videoio::CAP_OPENNI2()
PDL::OpenCV::Videoio::CAP_OPENNI2_ASUS()
PDL::OpenCV::Videoio::CAP_OPENNI2_ASTRA()
PDL::OpenCV::Videoio::CAP_GPHOTO2()
PDL::OpenCV::Videoio::CAP_GSTREAMER()
PDL::OpenCV::Videoio::CAP_FFMPEG()
PDL::OpenCV::Videoio::CAP_IMAGES()
PDL::OpenCV::Videoio::CAP_ARAVIS()
PDL::OpenCV::Videoio::CAP_OPENCV_MJPEG()
PDL::OpenCV::Videoio::CAP_INTEL_MFX()
PDL::OpenCV::Videoio::CAP_XINE()
PDL::OpenCV::Videoio::CAP_UEYE()
PDL::OpenCV::Videoio::CAP_PROP_POS_MSEC()
PDL::OpenCV::Videoio::CAP_PROP_POS_FRAMES()
PDL::OpenCV::Videoio::CAP_PROP_POS_AVI_RATIO()
PDL::OpenCV::Videoio::CAP_PROP_FRAME_WIDTH()
PDL::OpenCV::Videoio::CAP_PROP_FRAME_HEIGHT()
PDL::OpenCV::Videoio::CAP_PROP_FPS()
PDL::OpenCV::Videoio::CAP_PROP_FOURCC()
PDL::OpenCV::Videoio::CAP_PROP_FRAME_COUNT()
PDL::OpenCV::Videoio::CAP_PROP_FORMAT()
PDL::OpenCV::Videoio::CAP_PROP_MODE()
PDL::OpenCV::Videoio::CAP_PROP_BRIGHTNESS()
PDL::OpenCV::Videoio::CAP_PROP_CONTRAST()
PDL::OpenCV::Videoio::CAP_PROP_SATURATION()
PDL::OpenCV::Videoio::CAP_PROP_HUE()
PDL::OpenCV::Videoio::CAP_PROP_GAIN()
PDL::OpenCV::Videoio::CAP_PROP_EXPOSURE()
PDL::OpenCV::Videoio::CAP_PROP_CONVERT_RGB()
PDL::OpenCV::Videoio::CAP_PROP_WHITE_BALANCE_BLUE_U()
PDL::OpenCV::Videoio::CAP_PROP_RECTIFICATION()
PDL::OpenCV::Videoio::CAP_PROP_MONOCHROME()
PDL::OpenCV::Videoio::CAP_PROP_SHARPNESS()
PDL::OpenCV::Videoio::CAP_PROP_AUTO_EXPOSURE()
PDL::OpenCV::Videoio::CAP_PROP_GAMMA()
PDL::OpenCV::Videoio::CAP_PROP_TEMPERATURE()
PDL::OpenCV::Videoio::CAP_PROP_TRIGGER()
PDL::OpenCV::Videoio::CAP_PROP_TRIGGER_DELAY()
PDL::OpenCV::Videoio::CAP_PROP_WHITE_BALANCE_RED_V()
PDL::OpenCV::Videoio::CAP_PROP_ZOOM()
PDL::OpenCV::Videoio::CAP_PROP_FOCUS()
PDL::OpenCV::Videoio::CAP_PROP_GUID()
PDL::OpenCV::Videoio::CAP_PROP_ISO_SPEED()
PDL::OpenCV::Videoio::CAP_PROP_BACKLIGHT()
PDL::OpenCV::Videoio::CAP_PROP_PAN()
PDL::OpenCV::Videoio::CAP_PROP_TILT()
PDL::OpenCV::Videoio::CAP_PROP_ROLL()
PDL::OpenCV::Videoio::CAP_PROP_IRIS()
PDL::OpenCV::Videoio::CAP_PROP_SETTINGS()
PDL::OpenCV::Videoio::CAP_PROP_BUFFERSIZE()
PDL::OpenCV::Videoio::CAP_PROP_AUTOFOCUS()
PDL::OpenCV::Videoio::CAP_PROP_SAR_NUM()
PDL::OpenCV::Videoio::CAP_PROP_SAR_DEN()
PDL::OpenCV::Videoio::CAP_PROP_BACKEND()
PDL::OpenCV::Videoio::CAP_PROP_CHANNEL()
PDL::OpenCV::Videoio::CAP_PROP_AUTO_WB()
PDL::OpenCV::Videoio::CAP_PROP_WB_TEMPERATURE()
PDL::OpenCV::Videoio::CAP_PROP_CODEC_PIXEL_FORMAT()
PDL::OpenCV::Videoio::CAP_PROP_BITRATE()
PDL::OpenCV::Videoio::CAP_PROP_ORIENTATION_META()
PDL::OpenCV::Videoio::CAP_PROP_ORIENTATION_AUTO()
PDL::OpenCV::Videoio::CAP_PROP_HW_ACCELERATION()
PDL::OpenCV::Videoio::CAP_PROP_HW_DEVICE()
PDL::OpenCV::Videoio::CAP_PROP_HW_ACCELERATION_USE_OPENCL()
PDL::OpenCV::Videoio::CAP_PROP_OPEN_TIMEOUT_MSEC()
PDL::OpenCV::Videoio::CAP_PROP_READ_TIMEOUT_MSEC()
PDL::OpenCV::Videoio::CAP_PROP_STREAM_OPEN_TIME_USEC()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_QUALITY()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_FRAMEBYTES()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_NSTRIPES()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_IS_COLOR()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_DEPTH()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_HW_ACCELERATION()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_HW_DEVICE()
PDL::OpenCV::Videoio::VIDEOWRITER_PROP_HW_ACCELERATION_USE_OPENCL()
PDL::OpenCV::Videoio::VIDEO_ACCELERATION_NONE()
PDL::OpenCV::Videoio::VIDEO_ACCELERATION_ANY()
PDL::OpenCV::Videoio::VIDEO_ACCELERATION_D3D11()
PDL::OpenCV::Videoio::VIDEO_ACCELERATION_VAAPI()
PDL::OpenCV::Videoio::VIDEO_ACCELERATION_MFX()
PDL::OpenCV::Videoio::CAP_PROP_DC1394_OFF()
PDL::OpenCV::Videoio::CAP_PROP_DC1394_MODE_MANUAL()
PDL::OpenCV::Videoio::CAP_PROP_DC1394_MODE_AUTO()
PDL::OpenCV::Videoio::CAP_PROP_DC1394_MODE_ONE_PUSH_AUTO()
PDL::OpenCV::Videoio::CAP_PROP_DC1394_MAX()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_GENERATOR()
PDL::OpenCV::Videoio::CAP_OPENNI_IMAGE_GENERATOR()
PDL::OpenCV::Videoio::CAP_OPENNI_IR_GENERATOR()
PDL::OpenCV::Videoio::CAP_OPENNI_GENERATORS_MASK()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_OUTPUT_MODE()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_FRAME_MAX_DEPTH()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_BASELINE()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_FOCAL_LENGTH()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_REGISTRATION()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_REGISTRATION_ON()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_APPROX_FRAME_SYNC()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_MAX_BUFFER_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_CIRCLE_BUFFER()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_MAX_TIME_DURATION()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI_GENERATOR_PRESENT()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI2_SYNC()
PDL::OpenCV::Videoio::CAP_PROP_OPENNI2_MIRROR()
PDL::OpenCV::Videoio::CAP_OPENNI_IMAGE_GENERATOR_PRESENT()
PDL::OpenCV::Videoio::CAP_OPENNI_IMAGE_GENERATOR_OUTPUT_MODE()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_GENERATOR_PRESENT()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_GENERATOR_BASELINE()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_GENERATOR_FOCAL_LENGTH()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION_ON()
PDL::OpenCV::Videoio::CAP_OPENNI_IR_GENERATOR_PRESENT()
PDL::OpenCV::Videoio::CAP_OPENNI_DEPTH_MAP()
PDL::OpenCV::Videoio::CAP_OPENNI_POINT_CLOUD_MAP()
PDL::OpenCV::Videoio::CAP_OPENNI_DISPARITY_MAP()
PDL::OpenCV::Videoio::CAP_OPENNI_DISPARITY_MAP_32F()
PDL::OpenCV::Videoio::CAP_OPENNI_VALID_DEPTH_MASK()
PDL::OpenCV::Videoio::CAP_OPENNI_BGR_IMAGE()
PDL::OpenCV::Videoio::CAP_OPENNI_GRAY_IMAGE()
PDL::OpenCV::Videoio::CAP_OPENNI_IR_IMAGE()
PDL::OpenCV::Videoio::CAP_OPENNI_VGA_30HZ()
PDL::OpenCV::Videoio::CAP_OPENNI_SXGA_15HZ()
PDL::OpenCV::Videoio::CAP_OPENNI_SXGA_30HZ()
PDL::OpenCV::Videoio::CAP_OPENNI_QVGA_30HZ()
PDL::OpenCV::Videoio::CAP_OPENNI_QVGA_60HZ()
PDL::OpenCV::Videoio::CAP_PROP_GSTREAMER_QUEUE_LENGTH()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_MULTICASTIP()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_FRAMESTARTTRIGGERMODE()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_DECIMATIONHORIZONTAL()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_DECIMATIONVERTICAL()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_BINNINGX()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_BINNINGY()
PDL::OpenCV::Videoio::CAP_PROP_PVAPI_PIXELFORMAT()
PDL::OpenCV::Videoio::CAP_PVAPI_FSTRIGMODE_FREERUN()
PDL::OpenCV::Videoio::CAP_PVAPI_FSTRIGMODE_SYNCIN1()
PDL::OpenCV::Videoio::CAP_PVAPI_FSTRIGMODE_SYNCIN2()
PDL::OpenCV::Videoio::CAP_PVAPI_FSTRIGMODE_FIXEDRATE()
PDL::OpenCV::Videoio::CAP_PVAPI_FSTRIGMODE_SOFTWARE()
PDL::OpenCV::Videoio::CAP_PVAPI_DECIMATION_OFF()
PDL::OpenCV::Videoio::CAP_PVAPI_DECIMATION_2OUTOF4()
PDL::OpenCV::Videoio::CAP_PVAPI_DECIMATION_2OUTOF8()
PDL::OpenCV::Videoio::CAP_PVAPI_DECIMATION_2OUTOF16()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_MONO8()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_MONO16()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_BAYER8()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_BAYER16()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_RGB24()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_BGR24()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_RGBA32()
PDL::OpenCV::Videoio::CAP_PVAPI_PIXELFORMAT_BGRA32()
PDL::OpenCV::Videoio::CAP_PROP_XI_DOWNSAMPLING()
PDL::OpenCV::Videoio::CAP_PROP_XI_DATA_FORMAT()
PDL::OpenCV::Videoio::CAP_PROP_XI_OFFSET_X()
PDL::OpenCV::Videoio::CAP_PROP_XI_OFFSET_Y()
PDL::OpenCV::Videoio::CAP_PROP_XI_TRG_SOURCE()
PDL::OpenCV::Videoio::CAP_PROP_XI_TRG_SOFTWARE()
PDL::OpenCV::Videoio::CAP_PROP_XI_GPI_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_GPI_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_GPI_LEVEL()
PDL::OpenCV::Videoio::CAP_PROP_XI_GPO_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_GPO_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LED_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_LED_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_MANUAL_WB()
PDL::OpenCV::Videoio::CAP_PROP_XI_AUTO_WB()
PDL::OpenCV::Videoio::CAP_PROP_XI_AEAG()
PDL::OpenCV::Videoio::CAP_PROP_XI_EXP_PRIORITY()
PDL::OpenCV::Videoio::CAP_PROP_XI_AE_MAX_LIMIT()
PDL::OpenCV::Videoio::CAP_PROP_XI_AG_MAX_LIMIT()
PDL::OpenCV::Videoio::CAP_PROP_XI_AEAG_LEVEL()
PDL::OpenCV::Videoio::CAP_PROP_XI_TIMEOUT()
PDL::OpenCV::Videoio::CAP_PROP_XI_EXPOSURE()
PDL::OpenCV::Videoio::CAP_PROP_XI_EXPOSURE_BURST_COUNT()
PDL::OpenCV::Videoio::CAP_PROP_XI_GAIN_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_GAIN()
PDL::OpenCV::Videoio::CAP_PROP_XI_DOWNSAMPLING_TYPE()
PDL::OpenCV::Videoio::CAP_PROP_XI_BINNING_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_BINNING_VERTICAL()
PDL::OpenCV::Videoio::CAP_PROP_XI_BINNING_HORIZONTAL()
PDL::OpenCV::Videoio::CAP_PROP_XI_BINNING_PATTERN()
PDL::OpenCV::Videoio::CAP_PROP_XI_DECIMATION_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_DECIMATION_VERTICAL()
PDL::OpenCV::Videoio::CAP_PROP_XI_DECIMATION_HORIZONTAL()
PDL::OpenCV::Videoio::CAP_PROP_XI_DECIMATION_PATTERN()
PDL::OpenCV::Videoio::CAP_PROP_XI_TEST_PATTERN_GENERATOR_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_TEST_PATTERN()
PDL::OpenCV::Videoio::CAP_PROP_XI_IMAGE_DATA_FORMAT()
PDL::OpenCV::Videoio::CAP_PROP_XI_SHUTTER_TYPE()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_TAPS()
PDL::OpenCV::Videoio::CAP_PROP_XI_AEAG_ROI_OFFSET_X()
PDL::OpenCV::Videoio::CAP_PROP_XI_AEAG_ROI_OFFSET_Y()
PDL::OpenCV::Videoio::CAP_PROP_XI_AEAG_ROI_WIDTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_AEAG_ROI_HEIGHT()
PDL::OpenCV::Videoio::CAP_PROP_XI_BPC()
PDL::OpenCV::Videoio::CAP_PROP_XI_WB_KR()
PDL::OpenCV::Videoio::CAP_PROP_XI_WB_KG()
PDL::OpenCV::Videoio::CAP_PROP_XI_WB_KB()
PDL::OpenCV::Videoio::CAP_PROP_XI_WIDTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_HEIGHT()
PDL::OpenCV::Videoio::CAP_PROP_XI_REGION_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_REGION_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LIMIT_BANDWIDTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_DATA_BIT_DEPTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_OUTPUT_DATA_BIT_DEPTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_IMAGE_DATA_BIT_DEPTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_OUTPUT_DATA_PACKING()
PDL::OpenCV::Videoio::CAP_PROP_XI_OUTPUT_DATA_PACKING_TYPE()
PDL::OpenCV::Videoio::CAP_PROP_XI_IS_COOLED()
PDL::OpenCV::Videoio::CAP_PROP_XI_COOLING()
PDL::OpenCV::Videoio::CAP_PROP_XI_TARGET_TEMP()
PDL::OpenCV::Videoio::CAP_PROP_XI_CHIP_TEMP()
PDL::OpenCV::Videoio::CAP_PROP_XI_HOUS_TEMP()
PDL::OpenCV::Videoio::CAP_PROP_XI_HOUS_BACK_SIDE_TEMP()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_BOARD_TEMP()
PDL::OpenCV::Videoio::CAP_PROP_XI_CMS()
PDL::OpenCV::Videoio::CAP_PROP_XI_APPLY_CMS()
PDL::OpenCV::Videoio::CAP_PROP_XI_IMAGE_IS_COLOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_COLOR_FILTER_ARRAY()
PDL::OpenCV::Videoio::CAP_PROP_XI_GAMMAY()
PDL::OpenCV::Videoio::CAP_PROP_XI_GAMMAC()
PDL::OpenCV::Videoio::CAP_PROP_XI_SHARPNESS()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_00()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_01()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_02()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_03()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_10()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_11()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_12()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_13()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_20()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_21()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_22()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_23()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_30()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_31()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_32()
PDL::OpenCV::Videoio::CAP_PROP_XI_CC_MATRIX_33()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEFAULT_CC_MATRIX()
PDL::OpenCV::Videoio::CAP_PROP_XI_TRG_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_ACQ_FRAME_BURST_COUNT()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEBOUNCE_EN()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEBOUNCE_T0()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEBOUNCE_T1()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEBOUNCE_POL()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_APERTURE_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_FOCUS_MOVEMENT_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_FOCUS_MOVE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_FOCUS_DISTANCE()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_FOCAL_LENGTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_FEATURE_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_LENS_FEATURE()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEVICE_MODEL_ID()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEVICE_SN()
PDL::OpenCV::Videoio::CAP_PROP_XI_IMAGE_DATA_FORMAT_RGB32_ALPHA()
PDL::OpenCV::Videoio::CAP_PROP_XI_IMAGE_PAYLOAD_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_TRANSPORT_PIXEL_FORMAT()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_CLOCK_FREQ_HZ()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_CLOCK_FREQ_INDEX()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_OUTPUT_CHANNEL_COUNT()
PDL::OpenCV::Videoio::CAP_PROP_XI_FRAMERATE()
PDL::OpenCV::Videoio::CAP_PROP_XI_COUNTER_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_COUNTER_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_XI_ACQ_TIMING_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_AVAILABLE_BANDWIDTH()
PDL::OpenCV::Videoio::CAP_PROP_XI_BUFFER_POLICY()
PDL::OpenCV::Videoio::CAP_PROP_XI_LUT_EN()
PDL::OpenCV::Videoio::CAP_PROP_XI_LUT_INDEX()
PDL::OpenCV::Videoio::CAP_PROP_XI_LUT_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_XI_TRG_DELAY()
PDL::OpenCV::Videoio::CAP_PROP_XI_TS_RST_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_TS_RST_SOURCE()
PDL::OpenCV::Videoio::CAP_PROP_XI_IS_DEVICE_EXIST()
PDL::OpenCV::Videoio::CAP_PROP_XI_ACQ_BUFFER_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_ACQ_BUFFER_SIZE_UNIT()
PDL::OpenCV::Videoio::CAP_PROP_XI_ACQ_TRANSPORT_BUFFER_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_BUFFERS_QUEUE_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_ACQ_TRANSPORT_BUFFER_COMMIT()
PDL::OpenCV::Videoio::CAP_PROP_XI_RECENT_FRAME()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEVICE_RESET()
PDL::OpenCV::Videoio::CAP_PROP_XI_COLUMN_FPN_CORRECTION()
PDL::OpenCV::Videoio::CAP_PROP_XI_ROW_FPN_CORRECTION()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_MODE()
PDL::OpenCV::Videoio::CAP_PROP_XI_HDR()
PDL::OpenCV::Videoio::CAP_PROP_XI_HDR_KNEEPOINT_COUNT()
PDL::OpenCV::Videoio::CAP_PROP_XI_HDR_T1()
PDL::OpenCV::Videoio::CAP_PROP_XI_HDR_T2()
PDL::OpenCV::Videoio::CAP_PROP_XI_KNEEPOINT1()
PDL::OpenCV::Videoio::CAP_PROP_XI_KNEEPOINT2()
PDL::OpenCV::Videoio::CAP_PROP_XI_IMAGE_BLACK_LEVEL()
PDL::OpenCV::Videoio::CAP_PROP_XI_HW_REVISION()
PDL::OpenCV::Videoio::CAP_PROP_XI_DEBUG_LEVEL()
PDL::OpenCV::Videoio::CAP_PROP_XI_AUTO_BANDWIDTH_CALCULATION()
PDL::OpenCV::Videoio::CAP_PROP_XI_FFS_FILE_ID()
PDL::OpenCV::Videoio::CAP_PROP_XI_FFS_FILE_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_FREE_FFS_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_USED_FFS_SIZE()
PDL::OpenCV::Videoio::CAP_PROP_XI_FFS_ACCESS_KEY()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_FEATURE_SELECTOR()
PDL::OpenCV::Videoio::CAP_PROP_XI_SENSOR_FEATURE_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_ARAVIS_AUTOTRIGGER()
PDL::OpenCV::Videoio::CAP_PROP_IOS_DEVICE_FOCUS()
PDL::OpenCV::Videoio::CAP_PROP_IOS_DEVICE_EXPOSURE()
PDL::OpenCV::Videoio::CAP_PROP_IOS_DEVICE_FLASH()
PDL::OpenCV::Videoio::CAP_PROP_IOS_DEVICE_WHITEBALANCE()
PDL::OpenCV::Videoio::CAP_PROP_IOS_DEVICE_TORCH()
PDL::OpenCV::Videoio::CAP_PROP_GIGA_FRAME_OFFSET_X()
PDL::OpenCV::Videoio::CAP_PROP_GIGA_FRAME_OFFSET_Y()
PDL::OpenCV::Videoio::CAP_PROP_GIGA_FRAME_WIDTH_MAX()
PDL::OpenCV::Videoio::CAP_PROP_GIGA_FRAME_HEIGH_MAX()
PDL::OpenCV::Videoio::CAP_PROP_GIGA_FRAME_SENS_WIDTH()
PDL::OpenCV::Videoio::CAP_PROP_GIGA_FRAME_SENS_HEIGH()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_PROFILE_COUNT()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_PROFILE_IDX()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_DEPTH_LOW_CONFIDENCE_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_DEPTH_SATURATION_VALUE()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_DEPTH_CONFIDENCE_THRESHOLD()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_HORZ()
PDL::OpenCV::Videoio::CAP_PROP_INTELPERC_DEPTH_FOCAL_LENGTH_VERT()
PDL::OpenCV::Videoio::CAP_INTELPERC_DEPTH_GENERATOR()
PDL::OpenCV::Videoio::CAP_INTELPERC_IMAGE_GENERATOR()
PDL::OpenCV::Videoio::CAP_INTELPERC_IR_GENERATOR()
PDL::OpenCV::Videoio::CAP_INTELPERC_GENERATORS_MASK()
PDL::OpenCV::Videoio::CAP_INTELPERC_DEPTH_MAP()
PDL::OpenCV::Videoio::CAP_INTELPERC_UVDEPTH_MAP()
PDL::OpenCV::Videoio::CAP_INTELPERC_IR_MAP()
PDL::OpenCV::Videoio::CAP_INTELPERC_IMAGE()
PDL::OpenCV::Videoio::CAP_PROP_GPHOTO2_PREVIEW()
PDL::OpenCV::Videoio::CAP_PROP_GPHOTO2_WIDGET_ENUMERATE()
PDL::OpenCV::Videoio::CAP_PROP_GPHOTO2_RELOAD_CONFIG()
PDL::OpenCV::Videoio::CAP_PROP_GPHOTO2_RELOAD_ON_CHANGE()
PDL::OpenCV::Videoio::CAP_PROP_GPHOTO2_COLLECT_MSGS()
PDL::OpenCV::Videoio::CAP_PROP_GPHOTO2_FLUSH_MSGS()
PDL::OpenCV::Videoio::CAP_PROP_SPEED()
PDL::OpenCV::Videoio::CAP_PROP_APERTURE()
PDL::OpenCV::Videoio::CAP_PROP_EXPOSUREPROGRAM()
PDL::OpenCV::Videoio::CAP_PROP_VIEWFINDER()
PDL::OpenCV::Videoio::CAP_PROP_IMAGES_BASE()
PDL::OpenCV::Videoio::CAP_PROP_IMAGES_LAST()