gpt4 book ai didi

javascript - 使用 Tesseract OCR 添加 url 作为查询参数

转载 作者:可可西里 更新时间:2023-11-01 00:54:13 26 4
gpt4 key购买 nike

我正在使用 tesseract ocr,它运行良好。但我的问题是我可以使用 url 作为参数运行 tesseract 吗?

我想做以下事情

localhost/test.html/?othersite.com/image/image2.jpg 

演示的一些图片网址:

 1. https://i.imgur.com/leBXjxq.png
2. https://i.imgur.com/7u9LyF6.png

当处理结果时,它会出现在 text-area 框中。

这是一个代码:

<html>
<head>
<title>Tesseract-JS Demo</title>
</head>
<body>
<input type="text" id="url" placeholder="Image URL" />

<!--<div id="ocr_results"> </div>-->
<div id="ocr_status"> </div>
<div>
<label>Filed1
<label>
<textarea id="txt" ></textarea>
</div>


</body>

<script src='https://cdn.rawgit.com/naptha/tesseract.js
/1.0.10/dist/tesseract.js'></script>
<script

src="https://cdnjs.cloudflare.com/ajax/
libs/jquery/3.3.1/jquery.min.js"></script>
<script>
function runOCR(url) {
Tesseract.recognize(url)
.then(function(result) {
document.getElementById("txt")
.innerHTML = result.text;
document.getElementById('txt').focus();

}).progress(function(result) {
document.getElementById("ocr_status")
.innerText = result["status"] + " (" +
(result["progress"] * 100) + "%)";
});
}
document.getElementById("url")
.addEventListener("change", function(e) {
var url = document.getElementById("url").value;
runOCR(url);

});


</script>

最佳答案

你可以做 localhost/test.html?image=https://i.imgur.com/leBXjxq.png

您可以像这样从 JavaScript 中的 URL 获取图像:

const urlParams = new URLSearchParams(window.location.search);
const myImage = urlParams.get('image');

myImage 变量将为:“https://i.imgur.com/leBXjxq.png ”,然后您可以将其传递给您的 OCR 方法。

示例代码如下:

const urlParams = new URLSearchParams(window.location.search);
const myImage = urlParams.get('image');
if (myImage) {
runOCR(myImage);
}

这是更新代码的链接:https://gist.github.com/kolarski/0bc2a3feb02adb1b63016d0d78b3653c

关于javascript - 使用 Tesseract OCR 添加 url 作为查询参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55979718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com