[][src]Enum opencv::videoio::VideoCaptureAPIs

#[repr(C)]
pub enum VideoCaptureAPIs {
    CAP_ANY,
    CAP_V4L,
    CAP_FIREWIRE,
    CAP_QT,
    CAP_UNICAP,
    CAP_DSHOW,
    CAP_PVAPI,
    CAP_OPENNI,
    CAP_OPENNI_ASUS,
    CAP_ANDROID,
    CAP_XIAPI,
    CAP_AVFOUNDATION,
    CAP_GIGANETIX,
    CAP_MSMF,
    CAP_WINRT,
    CAP_INTELPERC,
    CAP_OPENNI2,
    CAP_OPENNI2_ASUS,
    CAP_GPHOTO2,
    CAP_GSTREAMER,
    CAP_FFMPEG,
    CAP_IMAGES,
    CAP_ARAVIS,
    CAP_OPENCV_MJPEG,
    CAP_INTEL_MFX,
    CAP_XINE,
}

%VideoCapture API backends identifier.

Select preferred API for a capture object. To be used in the VideoCapture::VideoCapture() constructor or VideoCapture::open()

Note: Backends are available only if they have been built with your OpenCV binaries. See @ref videoio_overview for more information.

Variants

CAP_ANY

Auto detect == 0

CAP_V4L

V4L/V4L2 capturing support via libv4l

CAP_FIREWIRE

IEEE 1394 drivers

CAP_QT

QuickTime

CAP_UNICAP

Unicap drivers

CAP_DSHOW

DirectShow (via videoInput)

CAP_PVAPI

PvAPI, Prosilica GigE SDK

CAP_OPENNI

OpenNI (for Kinect)

CAP_OPENNI_ASUS

OpenNI (for Asus Xtion)

CAP_ANDROID

Android - not used

CAP_XIAPI

XIMEA Camera API

CAP_AVFOUNDATION

AVFoundation framework for iOS (OS X Lion will have the same API)

CAP_GIGANETIX

Smartek Giganetix GigEVisionSDK

CAP_MSMF

Microsoft Media Foundation (via videoInput)

CAP_WINRT

Microsoft Windows Runtime using Media Foundation

CAP_INTELPERC

Intel Perceptual Computing SDK

CAP_OPENNI2

OpenNI2 (for Kinect)

CAP_OPENNI2_ASUS

OpenNI2 (for Asus Xtion and Occipital Structure sensors)

CAP_GPHOTO2

gPhoto2 connection

CAP_GSTREAMER

GStreamer

CAP_FFMPEG

Open and record video file or stream using the FFMPEG library

CAP_IMAGES

OpenCV Image Sequence (e.g. img_%02d.jpg)

CAP_ARAVIS

Aravis SDK

CAP_OPENCV_MJPEG

Built-in OpenCV MotionJPEG codec

CAP_INTEL_MFX

Intel MediaSDK

CAP_XINE

XINE engine (Linux)

Trait Implementations

impl Clone for VideoCaptureAPIs[src]

impl PartialEq<VideoCaptureAPIs> for VideoCaptureAPIs[src]

impl Copy for VideoCaptureAPIs[src]

impl Debug for VideoCaptureAPIs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]