summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt/frame.hpp
blob: 9e4f809a1f49241c3159b01d9550bc4c839b1a30 (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
#pragma once

#include "pt-api.hpp"

#include <opencv2/core.hpp>
#include <QImage>

namespace pt_module {

struct Frame final : pt_frame
{
    cv::Mat mat;

    operator const cv::Mat&() const& { return mat; }
    operator cv::Mat&() & { return mat; }
};

struct Preview final : pt_preview
{
    Preview(int w, int h);

    Preview& operator=(const pt_frame& frame) override;
    QImage get_bitmap() override;
    void draw_head_center(double x, double y) override;

    operator cv::Mat&() { return frame_copy; }
    operator cv::Mat const&() const { return frame_copy; }

private:
    static void ensure_size(cv::Mat& frame, int w, int h, int type);

    bool fresh = true;
    cv::Mat frame_copy, frame_color, frame_out;
};

} // ns pt_module