我提出的OCR(光學字符識別)的Web應用程序,而且我發現JavaScript庫Ocrad.js,這正是我一直在尋找,但我不能得到它工作。有人能幫助我嗎?如何獲得Ocrad.js例如工作
這裏是我的代碼:
<!doctype html>
<html>
<head>
<script src="ocrad.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function() {
var image = document.getElementById('image');
var string = OCRAD(image);
alert(string);
});
</script>
</head>
<body>
<img src="img.jpg" id="image">
</body>
</html>
請具體得多。 「無法實現它」的意思是什麼? – isherwood
我會使用的圖像的路徑來定義「形象」 – pathfinder