Skip to content

we-mid/bec-ocr

Repository files navigation

## Prerequisites
# https://grpc.io/docs/languages/go/quickstart/#prerequisites
# 1.
which protoc
# https://command-not-found.com/protoc
brew install protobuf  # if MacOS
apt-get install protobuf-compiler  # if Ubuntu
# ...
# 2.
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
which protoc-gen-go 
# ~/.bashrc
# golang, grpc
# Update your PATH so that the protoc compiler can find the plugins:
# https://grpc.io/docs/languages/go/quickstart/
export PATH="$PATH:$(go env GOPATH)/bin"

## Develop
go mod tidy
./codegen.sh
go run server.go &
go run client.go

# Once if *.proto changed
./codegen.sh

## Deploy
go build
./bec-ocr

# Deploy via PM2
./pm2.sh

Troubleshootings

  • go install xxx throws: can only use path@version syntax with 'go get'

    Should upgrade GO from <=1.13.x
    How to Install latest version of GO on Ubuntu 20.04 LTS (Focal Fossa)
    https://www.cyberithub.com/how-to-install-latest-version-of-go-on-ubuntu-20-04/

  • go build throws: leptonica/allheaders.h: No such file or directory

    go build
    # github.com/otiai10/gosseract/v2
    tessbridge.cpp:5:10: fatal error: leptonica/allheaders.h: No such file or directory
        5 | #include <leptonica/allheaders.h>
          |          ^~~~~~~~~~~~~~~~~~~~~~~~`
    
    # if Ubuntu
    # https://github.com/otiai10/gosseract#installation
    # https://github.com/tesseract-ocr/tessdoc/blob/main/Installation.md
    sudo apt install tesseract-ocr
    sudo apt install libtesseract-dev
    

About

OCR grpc server based on otiai10/gosseract

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published