- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
DigitClass.h
资源名称:vcc.rar [点击查看]
上传用户:cdscwht
上传日期:2022-07-27
资源大小:264k
文件大小:2k
源码类别:
图形/文字识别
开发平台:
Visual Basic
- // DigitClass.h: interface for the CDigitClass class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_DIGITCLASS_H__84110994_734D_4BC7_A51F_79A9EAA15792__INCLUDED_)
- #define AFX_DIGITCLASS_H__84110994_734D_4BC7_A51F_79A9EAA15792__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- //#include "Dib.h"
- //#define DigitMaxWidth 40
- //#define DigitMaxHeight 60
- //#define DigitSize 2400 //2400=40*60
- #define DigitMaxWidth 100
- #define DigitMaxHeight 100
- #define DigitSize 10000 //2400=40*60
- struct sample
- {
- double feature[13];//样本的特征向量
- char trueClass[3];//样本所属的真实类别
- int serialnum;//序列号
- };
- typedef struct sample Sample;
- class CDigitClass
- {
- public:
- BYTE Interpolation (BYTE* image, LONG lWidth, LONG lHeight, FLOAT x, FLOAT y);
- void MarrBinary();
- float Marroperator(float dr,int x,int y);
- void FixSize();
- void FixSize1();
- //构造函数和析构函数
- CDigitClass();
- virtual ~CDigitClass();
- //变量
- // CDib digitdib;//对应着数字的位图
- BYTE digitarray[DigitMaxHeight][DigitMaxWidth];
- BYTE digitarray1[DigitSize];
- int digitWidth; //数字图象的宽度
- int digitHeight; //数字图象的高度
- double feature[13];
- //函数
- // void CopyArToBitmap(void);
- // void CopyBitmapToAr(void);
- void BinaryDigit(BYTE thre);
- void BinaryDigit();
- //用四种不同的方法细化
- void ThinDigit_1();
- void ThinDigit_2();
- void ThinDigit_3();
- void ThinDigit_4();
- void GetFeature();
- //提取特征函数
- };
- #endif // !defined(AFX_DIGITCLASS_H__84110994_734D_4BC7_A51F_79A9EAA15792__INCLUDED_)