gray.h

来自「一些自己做的关于图象处理的程序(如傅立叶变换」· C头文件 代码 · 共 52 行

H
52
字号
#if !defined(AFX_GRAY_H__136ED4F6_6A4B_4689_87DF_B7F0616F1ACC__INCLUDED_)
#define AFX_GRAY_H__136ED4F6_6A4B_4689_87DF_B7F0616F1ACC__INCLUDED_
#include "ImageObject.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Gray.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CGray dialog
#include "PhotoStarView.h"
class CGray : public CDialog
{
// Construction
public:
	int m_y;
	int m_x;
	
	CGray(CWnd* pParent = NULL);   // standard constructor
    CImageObject *m_pImageObject;
	// Dialog Data
	//{{AFX_DATA(CGray)
	enum { IDD = IDD_VIEW_GRAY };
	BYTE	m_blue;
	BYTE	m_green;
	BYTE	m_red;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGray)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CGray)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_GRAY_H__136ED4F6_6A4B_4689_87DF_B7F0616F1ACC__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?