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

📄 presetotf.h

📁 3D reconstruction, medical image processing from colons, using intel image processing for based clas
💻 H
字号:
#ifndef __PRESETOTF_H__#define __PRESETOTF_H__typedef struct{	TCHAR		strTitle[20];	int			iThreshold[4];	COLORREF	crColor[4];			int			iShadedLevel;	int			iShadedWidth;	float		fShadedOpacity;	int			iUnshadedLevel;	int			iUnshadedWidth;	float		fUnshadedOpacity;} _PRESET_OTF, *_PRESET_OTF_PTR;class RxPresetOTF{protected:	UINT			m_nModality;			// 0 : MR, 1 : CT	CString			m_strFileName;	CPtrArray		m_ArrayPresetOTF;public:	RxPresetOTF();	virtual			~RxPresetOTF		();	void			CreatePresetOTFFile	(UINT nModality);	void			ReadPresetOTFFile	(UINT nModality, LPCTSTR lpszFileName);	void			WritePresetOTFFile	();	void			SetModality			(UINT nModality)	{	m_nModality = nModality;	}	UINT			GetModality			()					{	return m_nModality;			}	int				AddPresetOTF		(_PRESET_OTF_PTR stpPresetOTF);	_PRESET_OTF_PTR	GetPresetOTF		(UINT nIndex);	int				GetPresetOTFCount	();	void			RemovePresetOTF		(UINT nIndex);	void			RemoveAllPresetOTF	();	void			ShowPresetOTFDialog	(int iLevel, int iWidth);};#endif  __PRESETOTF_H__

⌨️ 快捷键说明

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