https://github.com/geertjohan/go.leptonica
go.leptonica wraps the leptonica library for "efficient image processing and image analysis operations".
https://github.com/geertjohan/go.leptonica
Last synced: 10 months ago
JSON representation
go.leptonica wraps the leptonica library for "efficient image processing and image analysis operations".
- Host: GitHub
- URL: https://github.com/geertjohan/go.leptonica
- Owner: GeertJohan
- License: bsd-2-clause
- Created: 2013-07-06T23:13:50.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2014-10-28T10:57:05.000Z (over 11 years ago)
- Last Synced: 2025-03-25T17:16:13.939Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 246 KB
- Stars: 12
- Watchers: 7
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## go.leptonica
go.leptonica wraps the leptonica library for "efficient image processing and image analysis operations".
### Installation
go.leptonica requires the leptonica library and development headers to compile.
Install following instructions below, then use the gopkg.in versioned release:
`go get gopkg.in/GeertJohan/go.leptonica.v1`
#### Debian Wheezy 7 (or later)
`sudo apt-get install libleptonica-dev`
#### Manual installation
Install dependencies.
```
sudo apt-get install autoconf automake libtool libpng12-dev libjpeg62-dev libtiff4-dev zlib1g-dev
```
Download, configure, make and install
```
wget http://leptonica.googlecode.com/files/leptonica-1.69.tar.gz
tar zxvf leptonica-1.69.tar.gz
cd leptonica-1.69
./configure
make
sudo make install
```