summaryrefslogtreecommitdiffhomepage
path: root/video-opencv/impl-camera.cpp
blob: 5c7f736d29378c06ac90d3c2d70e1c308183d627 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include "impl.hpp"
#include "compat/sleep.hpp"
#include "video-property-page.hpp"
#include <QDebug>

namespace opencv_camera_impl {

cam::cam(int idx) : idx(idx)
{
}

cam::~cam()
{
    stop();
}

void cam::stop()
{
    if (cap)
    {
        if (cap->isOpened())
            cap->release();
        cap = std::nullopt;
    }
    mat = cv::Mat();
    frame_ = { {}, false };
}

bool cam::is_open()
{
    return !!cap;
}

void cam::set_exposure(bool write)
{
    auto e = *s.exposure;
    if (e != exposure)
        switch (e)
        {
            case exposure_preset::near: cap->set(cv::CAP_PROP_EXPOSURE, -6); qDebug() << "near"; break;
            case exposure_preset::medium: cap->set(cv::CAP_PROP_EXPOSURE, -5); qDebug() << "medium"; break;
            case exposure_preset::far: cap->set(cv::CAP_PROP_EXPOSURE, -4); qDebug() << "far"; break;
            default: break;
        }

    if (s.exposure != exposure_preset::ignored)
    {
        constexpr struct {
            int prop, value;
        } props[] = {
            { cv::CAP_PROP_AUTO_EXPOSURE,   0 },
            { cv::CAP_PROP_BRIGHTNESS,      0 },
            { cv::CAP_PROP_SHARPNESS,       3 },
            { cv::CAP_PROP_AUTO_EXPOSURE,   0 },
            { cv::CAP_PROP_BRIGHTNESS,      0 },
            { cv::CAP_PROP_SHARPNESS,       3 },
            { cv::CAP_PROP_CONTRAST,       32 },
            { cv::CAP_PROP_HUE,             0 },
            { cv::CAP_PROP_SATURATION,      0 },
            { cv::CAP_PROP_SHARPNESS,       3 },
            { cv::CAP_PROP_GAMMA,         100 },
            { cv::CAP_PROP_BACKLIGHT,       1 },
            { cv::CAP_PROP_GAIN,            0 },
        };
        for (const auto [prop, value] : props)
            cap->set(prop, value);
    }

    if (write)
        exposure = e;
}

bool cam::start(info& args)
{
    stop();
    cap.emplace(idx, video_capture_backend);

    if (args.width > 0 && args.height > 0)
    {
        cap->set(cv::CAP_PROP_FRAME_WIDTH,  args.width);
        cap->set(cv::CAP_PROP_FRAME_HEIGHT, args.height);
    }
    if (args.fps > 0)
        cap->set(cv::CAP_PROP_FPS, args.fps);

    if (args.use_mjpeg)
        cap->set(cv::CAP_PROP_FOURCC, cv::VideoWriter::fourcc('M', 'J', 'P', 'G'));

    set_exposure(false);

    if (!cap->isOpened())
        goto fail;

    if (!get_frame_())
        goto fail;

    return true;

fail:
    stop();
    return false;
}

bool cam::get_frame_()
{
    if (!is_open())
        return false;

    for (unsigned i = 0; i < 10; i++)
    {
        if (cap->read(mat))
        {
            frame_.data = mat.data;
            frame_.width = mat.cols;
            frame_.height = mat.rows;
            frame_.stride = mat.step.p[0];
            if (mat.step.p[0] == (unsigned)frame_.width * mat.elemSize())
                frame_.stride = cv::Mat::AUTO_STEP;

            frame_.channels = mat.channels();

            return true;
        }
        portable::sleep(50);
    }

    set_exposure(true);

    return false;
}

std::tuple<const frame&, bool> cam::get_frame()
{
    bool ret = get_frame_();
    return { frame_, ret };
}

bool cam::show_dialog()
{
    if (is_open())
        return video_property_page::show_from_capture(*cap, idx);
    else
        return video_property_page::show(idx);
}

} // ns opencv_camera_impl