-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathWMDlg.h
65 lines (49 loc) · 1.23 KB
/
WMDlg.h
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
// WMDlg.h: 헤더 파일
//
#pragma once
//#include "LogIn.h"
#include <opencv2/core.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/opencv.hpp>
#include <iostream>
#include "LogIn.h"
using namespace std;
using namespace cv;
// CWMDlg 대화 상자
class CWMDlg : public CDialogEx
{
// 생성입니다.
public:
CWMDlg(CWnd* pParent = nullptr); // 표준 생성자입니다.
// 대화 상자 데이터입니다.
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_WM_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
// 구현입니다.
protected:
HICON m_hIcon;
// 생성된 메시지 맵 함수
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
/*이미지 변수*/
Mat QrImg; //Qrcode
Mat HostImg; //Host image
Mat MarkedImg; //QR Marked image
/*Login*/
LogIn LogInDialog; //LogIn dialog
afx_msg void OnBnClickedLoginbutton();
/*이미지 선택*/
afx_msg void OnBnClickedImagebutton();
/*워터마크 삽입*/
afx_msg void OnBnClickedInsertbutton();
/*워터마크 추출*/
afx_msg void OnBnClickedExtrabutton();
};