diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-22 14:12:19 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-22 14:25:24 +0200 |
commit | a4b852bd282ccecd87527b02f52a2cf66822a1db (patch) | |
tree | 5ecdc575a041f9e37c82ac0eecb1f5fb81ea4b90 /cv/video-property-page.hpp | |
parent | 6c7361b97dfd90470c8c2923a852aff17970a5ed (diff) |
cv: use amcap.exe for ps3 eye exposure settings
Diffstat (limited to 'cv/video-property-page.hpp')
-rw-r--r-- | cv/video-property-page.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cv/video-property-page.hpp b/cv/video-property-page.hpp index 4e53e2ab..2acffd85 100644 --- a/cv/video-property-page.hpp +++ b/cv/video-property-page.hpp @@ -4,20 +4,21 @@ #ifdef _WIN32 # include <windows.h> -# include <dshow.h> #endif #include "opencv2/videoio.hpp" +struct IBaseFilter; + struct video_property_page final { video_property_page() = delete; static bool show(int id); - static bool show_from_capture(cv::VideoCapture& cap, int idx); + static bool show_from_capture(cv::VideoCapture& cap, int index); static bool should_show_dialog(const QString& camera_name); private: #ifdef _WIN32 - static HRESULT ShowFilterPropertyPages(IBaseFilter* filter); + static int ShowFilterPropertyPages(IBaseFilter* filter); static IBaseFilter* get_device(int id); #endif }; |