最終更新:2018-09-17 (月) 02:44:29 (2040d)  

IVideoCapture
Top / IVideoCapture

    class IVideoCapture
    {
    public:
        virtual ~IVideoCapture() {}
        virtual double getProperty(int) const { return 0; }
        virtual bool setProperty(int, double) { return false; }
        virtual bool grabFrame() = 0;
        virtual bool retrieveFrame(int, OutputArray) = 0;
        virtual bool isOpened() const = 0;
        virtual int getCaptureDomain() { return CAP_ANY; } // Return the type of the capture object: CAP_VFW, etc...
    };

実装

  • VideoCapture_DShow
    DigitalCameraCapture?
    GStreamerCapture?
    VideoCapture_IntelPerC?
    MotionJpegCapture?
    VideoCapture_WinRT?
    XINECapture?