• 大小: 1.88MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-12
  • 语言: 其他
  • 标签: 手写  汉字  识别  

资源简介

很好用的手写汉字识别工具。识别率较高,但是也要求书写尽量的端正。你知道的,个人写的软件,比不上大公司大神们的程序,像QQ,sougou,咱就先别羡慕,看看我们这个简单的吧。

资源截图

代码片段和文件信息

// DNW.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “DNW.h“
#include “DNWDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDNWApp

BEGIN_MESSAGE_MAP(CDNWApp CWinApp)
//{{AFX_MSG_MAP(CDNWApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)


END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDNWApp construction

CDNWApp::CDNWApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CDNWApp object

CDNWApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDNWApp initialization

BOOL CDNWApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif


char szModule[] = “DNWWG“;
HANDLE hSemaphore = ::CreateSemaphore(NULL 0 1 szModule);
if(::GetLastError() == ERROR_ALREADY_EXISTS)
{
AfxMessageBox(“已经有一个实例在运行“);
::CloseHandle(hSemaphore);
return FALSE;
}

CDNWDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      18521  2006-03-28 03:29  手写汉字识别系统\bihua.h

     文件     498528  1996-09-25 12:05  手写汉字识别系统\data\HZK24F

     文件     498528  1996-09-25 12:05  手写汉字识别系统\data\HZK24H

     文件     498528  1996-09-25 12:05  手写汉字识别系统\data\HZK24K

     文件     498528  1996-10-07 17:38  手写汉字识别系统\data\HZK24S

     文件     101520  1996-09-25 11:01  手写汉字识别系统\data\HZK24T

     文件        188  2006-03-06 02:23  手写汉字识别系统\data\字库说明.txt

     文件     229376  2014-12-25 11:28  手写汉字识别系统\data.mdb

     文件      40108  2014-12-25 10:52  手写汉字识别系统\DNW.APS

     文件       2212  2014-12-25 11:34  手写汉字识别系统\DNW.clw

     文件       2267  2014-12-25 10:09  手写汉字识别系统\DNW.cpp

     文件       3251  2006-03-28 03:50  手写汉字识别系统\DNW.dsp

     文件        514  2007-09-04 20:22  手写汉字识别系统\DNW.dsw

     文件     720896  2006-04-02 23:41  手写汉字识别系统\DNW.exe

     文件       1395  2014-12-25 10:06  手写汉字识别系统\DNW.h

     文件     271360  2014-12-25 11:34  手写汉字识别系统\DNW.ncb

     文件      53760  2014-12-25 11:34  手写汉字识别系统\DNW.opt

     文件        976  2014-12-25 11:15  手写汉字识别系统\DNW.plg

     文件       8099  2014-12-25 10:52  手写汉字识别系统\DNW.rc

     文件      28351  2014-12-25 11:15  手写汉字识别系统\DNWDlg.cpp

     文件       3239  2014-12-25 10:06  手写汉字识别系统\DNWDlg.h

     文件      90619  2013-03-13 15:31  手写汉字识别系统\msado15.tlh

     文件      76614  2013-03-13 15:31  手写汉字识别系统\msado15.tli

     文件        326  2006-03-09 23:42  手写汉字识别系统\pencil.cur

     文件      92022  2014-12-25 10:39  手写汉字识别系统\pinyin.cpp

     文件        324  2014-12-25 10:35  手写汉字识别系统\pinyin.h

     文件       3525  2006-01-09 03:28  手写汉字识别系统\ReadMe.txt

     文件     761856  2014-12-25 11:15  手写汉字识别系统\Release\DNW.exe

     文件       1078  2006-01-09 03:28  手写汉字识别系统\res\DNW.ico

     文件        395  2006-01-09 03:28  手写汉字识别系统\res\DNW.rc2

............此处省略19个文件信息

评论

共有 条评论