summaryrefslogtreecommitdiff
path: root/src/imaging/Camera.h
blob: 9d41574129aef2a0ab738a1ec996f7502249a30b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
//  libavg - Media Playback Engine. 
//  Copyright (C) 2003-2014 Ulrich von Zadow
//
//  This library is free software; you can redistribute it and/or
//  modify it under the terms of the GNU Lesser General Public
//  License as published by the Free Software Foundation; either
//  version 2 of the License, or (at your option) any later version.
//
//  This library is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//  Lesser General Public License for more details.
//
//  You should have received a copy of the GNU Lesser General Public
//  License along with this library; if not, write to the Free Software
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//
//  Current versions can be found at www.libavg.de
//

#ifndef _Camera_H_
#define _Camera_H_

#include "../avgconfigwrapper.h"
#include "../graphics/Bitmap.h"

#include <boost/shared_ptr.hpp>
#include "CameraInfo.h"

#include <string>
#include <list>
#include <map>

namespace avg {

enum CameraFeature {
    CAM_FEATURE_BRIGHTNESS,
    CAM_FEATURE_EXPOSURE,
    CAM_FEATURE_SHARPNESS,
    CAM_FEATURE_WHITE_BALANCE,
    CAM_FEATURE_HUE,
    CAM_FEATURE_SATURATION,
    CAM_FEATURE_GAMMA,
    CAM_FEATURE_SHUTTER,
    CAM_FEATURE_GAIN,
    CAM_FEATURE_IRIS,
    CAM_FEATURE_FOCUS,
    CAM_FEATURE_TEMPERATURE,
    CAM_FEATURE_TRIGGER,
    CAM_FEATURE_TRIGGER_DELAY,
    CAM_FEATURE_WHITE_SHADING,
    CAM_FEATURE_ZOOM,
    CAM_FEATURE_PAN,
    CAM_FEATURE_TILT,
    CAM_FEATURE_OPTICAL_FILTER,
    CAM_FEATURE_CAPTURE_SIZE,
    CAM_FEATURE_CAPTURE_QUALITY,
    CAM_FEATURE_CONTRAST,
    CAM_FEATURE_STROBE_DURATION,
    CAM_FEATURE_UNSUPPORTED
};

class AVG_API Camera
{
public:
    Camera(PixelFormat camPF, PixelFormat destPF, IntPoint size, float frameRate);
    virtual ~Camera() {};
    virtual void startCapture() {};
    
    PixelFormat getCamPF() const;
    void setCamPF(PixelFormat pf);
    PixelFormat getDestPF() const;
    BitmapPtr convertCamFrameToDestPF(BitmapPtr pCamBmp);

    IntPoint getImgSize();
    float getFrameRate() const;
    virtual BitmapPtr getImage(bool bWait) = 0;

    virtual const std::string& getDevice() const = 0; 
    virtual const std::string& getDriverName() const = 0; 
    
    virtual int getFeature(CameraFeature feature) const = 0;
    virtual void setFeature(CameraFeature feature, int Value, 
            bool bIgnoreOldValue=false) = 0;
    virtual void setFeatureOneShot(CameraFeature feature) = 0;
    virtual int getWhitebalanceU() const = 0;
    virtual int getWhitebalanceV() const = 0;
    virtual void setWhitebalance(int u, int v, bool bIgnoreOldValue=false) = 0;

protected:
    PixelFormat fwBayerStringToPF(unsigned long reg);
    void setImgSize(const IntPoint& size);

private:
    Camera();
    PixelFormat m_CamPF;
    PixelFormat m_DestPF;

    IntPoint m_Size;
    float m_FrameRate;
};



std::string cameraFeatureToString(CameraFeature feature);

typedef boost::shared_ptr<Camera> CameraPtr;
typedef std::map<CameraFeature, int> FeatureMap;

AVG_API CameraPtr createCamera(const std::string& sDriver, const std::string& sDevice,
        int unit, bool bFW800, const IntPoint& captureSize, PixelFormat camPF, 
        PixelFormat destPF, float frameRate);

AVG_API std::vector<CameraInfo> getCamerasInfos();

}

#endif