资源简介
C汉字识别源代码,可以用鼠标在程序的空白处写字,然后让程序识别你所写的文字,当然需要字库支持,这个字库是需要事先准备好的,当然程序还有一个模式是“学习”模式,当有不识别的文字时可启动这个模式,将对应的文字输入,下一次如果重新写入这样的字,程序就可以识别了。
mydate.dat为字库。先点击file, 点open,读入字库,学习时字库自动保存。
已有键盘字符,字母,数字和简单汉字,如要识别复杂汉字,请先用学习功能。
代码片段和文件信息
// Inputdialog.cpp : implementation file
// Download by http://www.codefans.net
#include “stdafx.h“
#include “pattern.h“
#include “Inputdialog.h“
#include “TCHAR.H“
#define _UNICODE
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Inputdialog dialog
Inputdialog::Inputdialog(CWnd* pParent /*=NULL*/)
: CDialog(Inputdialog::IDD pParent)
{
//{{AFX_DATA_INIT(Inputdialog)
m_input2 = _T(““);
m_input1 = _T(““);
//}}AFX_DATA_INIT
}
void Inputdialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Inputdialog)
DDX_Text(pDX IDC_EDIT2 m_input2);
DDV_MaxChars(pDX m_input2 2);
DDX_Text(pDX IDC_EDIT1 m_input1);
DDV_MaxChars(pDX m_input1 2);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(Inputdialog CDialog)
//{{AFX_MSG_MAP(Inputdialog)
ON_BN_CLICKED(IDC_BUTTON1 Onok)
ON_BN_CLICKED(IDC_BUTTON2 Oncancel)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Inputdialog message handlers
void Inputdialog::Onok()
{
// TODO: Add your control notification handler code here
OnOK();
}
void Inputdialog::Oncancel()
{
// TODO: Add your control notification handler code here
OnCancel();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
134267 30
- 上一篇:AT89C51中文数据手册 pdf 高清版
- 下一篇:8UFTP,好用的FTP工具
评论
共有 条评论