Skip to content

Commit

Permalink
Use https
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Oct 30, 2018
1 parent 0e6796e commit efd0d5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vignettes/intro.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ tesseract_info()

By default the R package only includes English training data. Windows and Mac users can install additional training data using `tesseract_download()`. Let's OCR a screenshot from Wikipedia in Dutch (Nederlands)

[![utrecht](http://jeroen.github.io/images/utrecht2.png)](https://nl.wikipedia.org/wiki/Geschiedenis_van_de_stad_Utrecht)
[![utrecht](https://jeroen.github.io/images/utrecht2.png)](https://nl.wikipedia.org/wiki/Geschiedenis_van_de_stad_Utrecht)

```{r, eval=FALSE}
# Only need to do download once:
Expand All @@ -67,7 +67,7 @@ tesseract_download("nld")
```{r eval = has_nld}
# Now load the dictionary
(dutch <- tesseract("nld"))
text <- ocr("http://jeroen.github.io/images/utrecht2.png", engine = dutch)
text <- ocr("https://jeroen.github.io/images/utrecht2.png", engine = dutch)
cat(text)
```

Expand Down

0 comments on commit efd0d5f

Please sign in to comment.