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

📄 somview.h

📁 神经网络中的无监督学习中的SOM学习算法
💻 H
字号:
// SOMView.h : interface of the CSOMView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_SOMVIEW_H__3C8896A4_FE6A_4C8C_A843_421910FFBEF0__INCLUDED_)
#define AFX_SOMVIEW_H__3C8896A4_FE6A_4C8C_A843_421910FFBEF0__INCLUDED_

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

#include "PainterFacade.h"

class CSOMView : public CView
{
protected: // create from serialization only
	CSOMView();
	DECLARE_DYNCREATE(CSOMView)

// Attributes
public:
	CSOMDoc* GetDocument();

// Operations
public:
    enum {IDLE, TRAIN, STOPPED};
    void DrawResult();
    void Update();
private:
    int m_nState;
    int m_nIndex;
    int m_nStep;

    CDC *m_pMemDC;
    CBitmap *m_pBitMap;
    PainterFacade *m_pPointPainter;
    PainterFacade *m_pWeightPainter;

public:
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSOMView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CSOMView)
	afx_msg void OnButtonNorm();
	afx_msg void OnUpdateButtonNorm(CCmdUI* pCmdUI);
	afx_msg void OnButtonAve();
	afx_msg void OnUpdateButtonAve(CCmdUI* pCmdUI);
	afx_msg void OnButtonWReset();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnButtonClear();
	afx_msg void OnUpdateButtonClear(CCmdUI* pCmdUI);
	afx_msg void OnButtonStop();
	afx_msg void OnUpdateButtonStop(CCmdUI* pCmdUI);
	afx_msg void OnUpdateButtonTrain(CCmdUI* pCmdUI);
	afx_msg void OnButtonTrain();
	afx_msg void OnUpdateButtonWReset(CCmdUI* pCmdUI);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in SOMView.cpp
inline CSOMDoc* CSOMView::GetDocument()
   { return (CSOMDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_SOMVIEW_H__3C8896A4_FE6A_4C8C_A843_421910FFBEF0__INCLUDED_)

⌨️ 快捷键说明

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