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

📄 iplabdoc.h

📁 最小二乘法(least squares analysis)是一种 数学 优化 技术
💻 H
字号:
// IPLabDoc.h : interface of the CIPLabDoc class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_IPLABDOC_H__E7031B57_BC9D_44FD_84C7_E89022377670__INCLUDED_)
#define AFX_IPLABDOC_H__E7031B57_BC9D_44FD_84C7_E89022377670__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CIPLabDoc : public CDocument
{
protected: // create from serialization only
	CIPLabDoc();
	DECLARE_DYNCREATE(CIPLabDoc)

	Bitmap* pPicture;
	float m_Zoom;

// Attributes
public:
	
	Bitmap* GetBitmap(){return pPicture;};
	float GetZoom(){return m_Zoom;};
	int GetWidth(){return pPicture==NULL?0:pPicture->GetWidth();};
	int GetHeight(){return pPicture==NULL?0:pPicture->GetHeight();};
	void Draw(CDC* pDC);


////Image Processing Function
public:
	void IPFuncInv();
	void IPFuncInvInRegion(GraphicsPath* pWorkingRegion);
	void IPFuncInvInRegion_F(GraphicsPath* pWorkingRegion);
	void IPFuncInvInRegion_O(CRgn* pRgn);
	void HistogramAdjust(BYTE R[256],BYTE G[256],BYTE B[256]);

	
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CIPLabDoc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CIPLabDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CIPLabDoc)
	afx_msg void OnLeastsquaresfitting();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_IPLABDOC_H__E7031B57_BC9D_44FD_84C7_E89022377670__INCLUDED_)

⌨️ 快捷键说明

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