DigitClass.h
上传用户:cdscwht
上传日期:2022-07-27
资源大小:264k
文件大小:2k
源码类别:

图形/文字识别

开发平台:

Visual Basic

  1. // DigitClass.h: interface for the CDigitClass class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DIGITCLASS_H__84110994_734D_4BC7_A51F_79A9EAA15792__INCLUDED_)
  5. #define AFX_DIGITCLASS_H__84110994_734D_4BC7_A51F_79A9EAA15792__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. //#include "Dib.h"
  10. //#define DigitMaxWidth 40
  11. //#define DigitMaxHeight 60
  12. //#define DigitSize 2400 //2400=40*60
  13. #define DigitMaxWidth 100
  14. #define DigitMaxHeight 100
  15. #define DigitSize 10000 //2400=40*60
  16. struct sample
  17. {
  18. double feature[13];//样本的特征向量
  19. char trueClass[3];//样本所属的真实类别
  20. int serialnum;//序列号
  21. };
  22. typedef struct sample Sample;
  23. class CDigitClass  
  24. {
  25. public:
  26. BYTE Interpolation (BYTE* image, LONG lWidth, LONG lHeight, FLOAT x, FLOAT y);
  27. void MarrBinary();
  28. float Marroperator(float dr,int x,int y);
  29. void FixSize();
  30. void FixSize1();
  31. //构造函数和析构函数
  32. CDigitClass();
  33. virtual ~CDigitClass();
  34. //变量
  35. // CDib digitdib;//对应着数字的位图
  36. BYTE digitarray[DigitMaxHeight][DigitMaxWidth];
  37. BYTE digitarray1[DigitSize];
  38. int digitWidth; //数字图象的宽度
  39. int digitHeight; //数字图象的高度
  40. double feature[13];
  41. //函数
  42. // void CopyArToBitmap(void);
  43. // void CopyBitmapToAr(void);
  44. void BinaryDigit(BYTE thre);
  45. void BinaryDigit();
  46. //用四种不同的方法细化
  47. void ThinDigit_1();
  48. void ThinDigit_2();
  49. void ThinDigit_3();
  50. void ThinDigit_4();
  51. void GetFeature();
  52. //提取特征函数
  53. };
  54. #endif // !defined(AFX_DIGITCLASS_H__84110994_734D_4BC7_A51F_79A9EAA15792__INCLUDED_)