Subversion Repositories seema-scanner

Rev

Rev 1 | Rev 20 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 18
Line 9... Line 9...
9
class CameraPointGrey : public Camera {
9
class CameraPointGrey : public Camera {
10
    public:
10
    public:
11
        // Static methods
11
        // Static methods
12
        static vector<CameraInfo> getCameraList();
12
        static vector<CameraInfo> getCameraList();
13
        // Interface function
13
        // Interface function
14
        CameraPointGrey(unsigned int camNum);
14
        CameraPointGrey(unsigned int camNum, CameraTriggerMode triggerMode);
15
        CameraSettings getCameraSettings();
15
        CameraSettings getCameraSettings();
16
        void setCameraSettings(CameraSettings);
16
        void setCameraSettings(CameraSettings);
17
        void startCapture();
17
        void startCapture();
18
        void stopCapture();
18
        void stopCapture();
19
        CameraFrame lockFrame();
19
        CameraFrame getFrame();
20
        void unlockFrame();
-
 
21
        CameraFrame getSingleFrame();
-
 
22
        size_t getFrameSizeBytes();
20
        size_t getFrameSizeBytes();
-
 
21
        size_t getFrameWidth();
23
        void getFrameWidthHeight(unsigned int *width, unsigned int *height);
22
        size_t getFrameHeight();
24
        ~CameraPointGrey();
23
        ~CameraPointGrey();
25
    private:
24
    private:
26
        FlyCapture2::Camera cam;
25
        FlyCapture2::Camera cam;
27
};
26
};
28
 
27