-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
40 lines (35 loc) · 1.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Trying to implement OCR using teserract">
<meta name="author" content="Amit Mondal">
<title>Image Scanner</title>
<link rel="shortcut icon" href="./assets/images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="./assets/styles/app.css">
<script src='https://unpkg.com/tesseract.js@v2.0.0-beta.1/dist/tesseract.min.js'></script>
</head>
<body>
<div class="centered">
<div class="input-container">
<label class="input-file">
Choose Image
<input id='file-uploader' type='file'>
</label>
<span class="file-name"></span>
</div>
<br>
<img id="ocr-img" src="#" alt="choose-image" width="auto" height="auto">
<br>
<button id="start-scan" class="disabled">Start Scan</button>
<span id="progress"></span>
<div id="myProgress">
<div id="myBar"></div>
</div>
<div id="result"></div>
</div>
<script src="./assets/scripts/app.js" type="module"></script>
</body>
</html>