mattermost-community-enterp.../vendor/github.com/otiai10/gosseract/v2
Claude ec1f89217a Merge: Complete Mattermost Server with Community Enterprise
Full Mattermost server source with integrated Community Enterprise features.
Includes vendor directory for offline/air-gapped builds.

Structure:
- enterprise-impl/: Enterprise feature implementations
- enterprise-community/: Init files that register implementations
- enterprise/: Bridge imports (community_imports.go)
- vendor/: All dependencies for offline builds

Build (online):
  go build ./cmd/mattermost

Build (offline/air-gapped):
  go build -mod=vendor ./cmd/mattermost

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-17 23:59:07 +09:00
..
.dockerignore Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
.gitignore Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
client.go Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
CODE_OF_CONDUCT.md Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
constant.go Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
Dockerfile Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
hocr.go Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
ISSUE_TEMPLATE.md Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
LICENSE Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
preprocessflags_freebsd.go Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
preprocessflags_x.go Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
README.md Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
tessbridge.cpp Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00
tessbridge.h Merge: Complete Mattermost Server with Community Enterprise 2025-12-17 23:59:07 +09:00

gosseract OCR

Go Test Docker Test Vagrant Test codecov Go Report Card Maintainability License: MIT Go Reference

Golang OCR package, by using Tesseract C++ library.

OCR Server

Do you just want OCR server, or see the working example of this package? Yes, there is already-made server application, which is seriously easy to deploy!

👉 https://github.com/otiai10/ocrserver

Example

package main

import (
	"fmt"
	"github.com/otiai10/gosseract/v2"
)

func main() {
	client := gosseract.NewClient()
	defer client.Close()
	client.SetImage("path/to/image.png")
	text, _ := client.Text()
	fmt.Println(text)
	// Hello, World!
}

Installation

  1. tesseract-ocr, including library and headers
  2. go get -t github.com/otiai10/gosseract/v2

Please check this Dockerfile to get started step-by-step. Or if you want the env instantly, you can just try by docker run -it --rm otiai10/gosseract.

Test

In case you have tesseract-ocr on your local, you can just hit

% go test .

Otherwise, if you DON'T want to install tesseract-ocr on your local, kick ./test/runtime which is using Docker and Vagrant to test the source code on some runtimes.

% ./test/runtime --driver docker
% ./test/runtime --driver vagrant

Check ./test/runtimes for more information about runtime tests.

Issues