diff options
Diffstat (limited to 'video-opencv/video-property-page.hpp')
-rw-r--r-- | video-opencv/video-property-page.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/video-opencv/video-property-page.hpp b/video-opencv/video-property-page.hpp new file mode 100644 index 00000000..c2b9525d --- /dev/null +++ b/video-opencv/video-property-page.hpp @@ -0,0 +1,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: +}; + |