⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usedlgs.h

📁 医学图象处理系统
💻 H
📖 第 1 页 / 共 2 页
字号:

	// Generated message map functions
	//{{AFX_MSG(CMorphparam)
	afx_msg void OnDeltaposSpin1(NMHDR* pNMHDR, LRESULT* pResult);
	virtual void OnOK();
	afx_msg void OnPaint();
	virtual BOOL OnInitDialog();
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnButton1();
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	afx_msg void OnRadio3();
	afx_msg void OnRadio4();
	afx_msg void OnRadio5();
	afx_msg void OnRadio6();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFFTLowFilterDlg dialog

class CFFTLowFilterDlg : public CDialog
{
// Construction
public:
	CFFTLowFilterDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CFFTLowFilterDlg)
	enum { IDD = IDD_IMAGEPROC_FFT_LOWFILTER };
	CSliderCtrl	m_Slide1;
	CSpinButtonCtrl	m_Spin1;
	double	m_D0;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CFFTLowFilterDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnDeltaposSpin1(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CFFTHighFilter dialog

class CFFTHighFilter : public CDialog
{
// Construction
public:
	CFFTHighFilter(CWnd* pParent = NULL);   // standard constructor
	double	m_D0;
// Dialog Data
	//{{AFX_DATA(CFFTHighFilter)
	enum { IDD = IDD_IMAGEPROC_FFT_HIGHFILTER };
	int		m_Select;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CFFTHighFilter)
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	afx_msg void OnRadio3();
	afx_msg void OnRadio4();
	afx_msg void OnRadio5();
	afx_msg void OnRadio6();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CTargetgrayDlg dialog

class CTargetgrayDlg : public CDialog
{
// Construction
public:
	CTargetgrayDlg(CWnd* pParent = NULL);   // standard constructor
	BYTE TargetGray;
// Dialog Data
	//{{AFX_DATA(CTargetgrayDlg)
	enum { IDD = IDD_IMAGEPROC_BINARY_TARGETGRAY };
	int		m_Which;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CTargetgrayDlg)
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CGaussSigmaDlg dialog

class CGaussSigmaDlg : public CDialog
{
// Construction
public:
	CGaussSigmaDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CGaussSigmaDlg)
	enum { IDD = IDD_IMAGEPROC_GAUSSSIGMAPARAM };
	CSliderCtrl	m_Slide1;
	double	m_Sigma;
	int		m_SlidePos;
	//}}AFX_DATA
	double MinSigma, MaxSigma;

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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CGaussSigmaDlg)
	afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	virtual BOOL OnInitDialog();
	afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// C2DHistogram dialog

class C2DHistogram : public CDialog
{
// Construction
public:
	void BuildHist2D();
	C2DHistogram(CImageLABDoc *_pDoc, int _type= 0, CWnd* pParent = NULL);   // standard constructor

	CImageLABDoc *m_pDoc;
	CImage m_His2DImage;
	int    iHist2d[256][256];
	int    ihistGray[256];
	int    iHistAve[256];
	int    hW;
	int    MaxGray;
	int    MaxAver;
	int    m_Type;
// Dialog Data
	//{{AFX_DATA(C2DHistogram)
	enum { IDD = IDD_IMAGEPROC_HISTOGRAM2D };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(C2DHistogram)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CCannyParam dialog

class CCannyParam : public CDialog
{
// Construction
public:
	CEdit* pEdit;
	CCannyParam(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CCannyParam)
	enum { IDD = IDD_IMAGEPROC_CANNYAPARAM };
	CSliderCtrl	m_slider3;
	CSliderCtrl	m_slider1;
	CSliderCtrl	m_slider2;
	float	m_sigma;
	float	m_lambda;
	float	m_tau;
	int		m_SlidePos;
	int		m_Operator_Type;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CCannyParam)
	virtual BOOL OnInitDialog();
	afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	afx_msg void OnRadio1();
	afx_msg void OnRadio2();
	afx_msg void OnRadio3();
	afx_msg void OnRadio4();
	afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CLABSaveDlg dialog

class CLABSaveDlg : public CDialog
{
// Construction
public:
	int DriveNum;
	int SelectDrive;
	CLABSaveDlg(int _DriveNum, CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CLABSaveDlg)
	enum { IDD = IDD_SAVEFILEDLG };
	CComboBox	m_Combo1;
	CString	m_FileName;
	CString m_FileNameExt;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CLABSaveDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSelchangeCombo1();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
// CPrintModeDlg dialog

class CPrintModeDlg : public CDialog
{
// Construction
public:
	CPrintModeDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CPrintModeDlg)
	enum { IDD = IDD_PRINTMODEDLG };
	int		m_Select;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CPrintModeDlg)
		// NOTE: the ClassWizard will add member functions here
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_USEDLGS_H__A65C0361_0781_11D3_B6E5_5254AB111C09__INCLUDED_)

⌨️ 快捷键说明

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