最近,我正在研究手写识别日语项目。我正在搜索某个地方,但仍然没有收到关于这方面的好信息。谁能给我一些猜测或提示手写识别的网站上的PHP和ajax。
发布于 2016-05-18 18:33:45
你可以使用神经网络。它很容易实现。你也可以使用分类器,考虑到你在互联网上有大量的训练数据,那么监督算法可能是最好的选择。查看此课程:https://www.coursera.org/learn/machine-learning
发布于 2016-12-13 05:19:35
我在MyScript工作,在那里我们构建了一个web组件,可以帮助您在web应用程序中集成日语手写识别。解释here时,您只需获取两个依赖项,然后在标记中添加myscript-text-web标记
<html>
<head>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/myscript-text-web/myscript-text-web.html">
</head>
<body>
<myscript-text-web
applicationkey="#PUT YOUR MYSCRIPT CDK APPLICATION KEY HERE#"
hmackey="#PUT YOUR MYSCRIPT CDK HMAC KEY HERE#"
language="ja_JP">
</myscript-text-web>
</body>
</html>如果你想用识别结果填充一个输入字段,你可以添加这段javascript:
var myScriptTextWeb = document.querySelector('myscript-text-web');
myScriptTextWeb.addEventListener('myscript-text-web-result',(evt) => {
console.log(myScriptTextWeb.firstcandidate);
// assuming the inpput you want to populate have id myinput
document.querySelector('#myinput').value = myScriptTextWeb.firstcandidate;
})希望这能有所帮助
https://stackoverflow.com/questions/37296772
复制相似问题