Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update and fix README.md #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ Extract text from image in browser using javascript library tesseract.js
## Installing
Clone this repository to your local computer
``` bash
git https://github.com/bensonruan/Tesseract-OCR.git
git clone https://github.com/bensonruan/Tesseract-OCR.git
```
Point your localhost to the cloned root directory

Browse to http://localhost/index.html


## Library
* [jquery](https://code.jquery.com/jquery-3.3.1.min.js) - JQuery
* [jquery](https://code.jquery.com/jquery-3.6.0.min.js) - JQuery
* [tesseract.js](https://github.com/naptha/tesseract.js) - Javascript library that gets words in almost any language out of images
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style/ocr.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://kit.fontawesome.com/4414288e8e.js"></script>
<script src='js/tesseract.min.js'></script>
</head>
Expand Down