DlgReg.h
上传用户:xjt2008yy
上传日期:2010-01-18
资源大小:272k
文件大小:3k
源码类别:

生物技术

开发平台:

Visual C++

  1. #if !defined(AFX_DlgReg_H__096C39D7_72FA_4ABD_90AC_688669D1692C__INCLUDED_)
  2. #define AFX_DlgReg_H__096C39D7_72FA_4ABD_90AC_688669D1692C__INCLUDED_
  3. #include "ImageProcessingDoc.h"
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // DlgReg.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CDlgReg dialog
  11. class CDlgReg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CImageProcessingDoc* m_pDoc;
  16. CDlgReg(CWnd* pParent = NULL, CImageProcessingDoc* pDoc = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CDlgReg)
  19. enum { IDD = IDD_DLG_REG };
  20. // NOTE: the ClassWizard will add data members here
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CDlgReg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. // 基准图象数据指针,用于图象拼接
  31. LPBYTE m_lpBaseImg;
  32. // 待配准图象数据指针,用于图象拼接
  33. LPBYTE m_lpSampImg;
  34. // 计算图象位置的标志位。FALSE表示还没有计算图象位置
  35. BOOL m_bCalImgLoc;
  36. // 选取特征点标志位。FALSE表示还没有选取
  37. BOOL m_bChoseFeature;
  38. // 设置图象等控件的位置大小
  39. void CalImageLocation();
  40. // 基准图象
  41. CDib* m_pDibInit;  
  42. // 待配准图象
  43. CDib* m_pDibSamp;
  44. // 配准后的图象
  45. CDib* m_pDibResult;
  46. // 基准图象显示区域
  47. CRect m_rectInitImage;
  48. // 待配准图象显示区域
  49. CRect m_rectResltImage;
  50. // 待配准特征点位置
  51. CPoint m_pPointSampl[3];
  52. // 配准的特征点位置
  53. CPoint m_pPointBase[3];
  54. // 寻找配准点
  55. CPoint FindMatchPoint(CDib* pDibBase, CDib* pDibSamp, CPoint pointSamp);
  56. // 计算相似度
  57. double CalCorrelation(unsigned char* pBase, unsigned char* pSamp,  int nBlockLen);
  58. // 画出特征点
  59. void   DrawFeature(CDC* pDC);
  60. // 获得仿射变换系数
  61. void   GetAffinePara(CPoint* pPointBase, CPoint* pPointSampl, double* pDbBs2SpAffPara);
  62. // 计算两个矩阵相乘
  63. void   CalMatProduct(double* pDbSrc1, double *pDbSrc2, double *pDbDest, int nX, int nY, int nZ);
  64. // 计算矩阵的逆
  65. BOOL   CalInvMatrix(double* pDbSrc, int nLen);
  66. // 获得待配准图象仿射变换后的区域
  67. CRect  GetAftAffDim(double* pDbAffPara);
  68. // 计算仿射变换后的待配准图象
  69. LPBYTE   SetSampImgAftAff(double* pDbAffPara, CRect rectNewImg);
  70. // 计算三次插值
  71. unsigned char CalSpline(unsigned char *pUnchCorr, double x, double y);
  72.  
  73. // 计算仿射变换后的基准图象
  74. LPBYTE   SetBaseImgAftAff(CRect rectNewImg);
  75. // Generated message map functions
  76. //{{AFX_MSG(CDlgReg)
  77. afx_msg void OnPaint();
  78. afx_msg void OnRegOpen();
  79. afx_msg void OnRegReg();
  80. afx_msg void OnRegChoseFeature();
  81. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  82. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  83. //}}AFX_MSG
  84. DECLARE_MESSAGE_MAP()
  85. private:
  86. int m_nChsFeatureNum;
  87. };
  88. //{{AFX_INSERT_LOCATION}}
  89. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  90. #endif // !defined(AFX_DlgReg_H__096C39D7_72FA_4ABD_90AC_688669D1692C__INCLUDED_)