summaryrefslogtreecommitdiffhomepage
path: root/cv/video-property-page.hpp
blob: c2b9525d23b75c670ff26bd0f6b138ad6834d060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <QString>
#include <opencv2/videoio.hpp>

struct video_property_page final
{
    video_property_page() = delete;
    static bool show(int id);
    static bool show_from_capture(cv::VideoCapture& cap, int index);
private:
};