Skip to main content

Fast OCR library for Foxhole stockpile screenshots

Project description

fs-ocr

Fast OCR library for Foxhole stockpile screenshots, written in Rust with Python bindings.

Features

  • Fast Template Matching: pHash filtering + NCC scoring with adaptive candidate escalation
  • ROI + Grey Mask Detection: black-box ROI localization followed by grey-mask box detection
  • Quantity Recognition: template-based glyph matching (no OCR engine needed for digits)
  • Pure-Rust OCR: ocrs/rten with an embedded model — reads Latin + Russian and localized stockpile types; Chinese custom names via the optional system tesseract CLI (see Language support)
  • Python API + CLI: PyO3 bindings (import fs_ocr) and an fs-ocr command-line tool

Installation

Standalone CLI (no Python required)

Prebuilt fs-ocr binaries are attached to each GitHub Release for Linux, Windows, and macOS (x86_64 + Apple Silicon). Download, extract, run:

tar -xzf fs-ocr-linux-x86_64.tar.gz   # or unzip the .zip on Windows
./fs-ocr scan screenshot.png -d templates.h5 --faction wardens

One static build is published per platform (fs-ocr-<os>-<arch>) — pure-Rust OCR, no system dependencies. (The system tesseract CLI is used at runtime only if present, for Chinese custom names.)

From PyPI

pip install fs-ocr

OCR is pure Rust (ocrs/rten) with the recognition model embedded in the wheel — no system OCR libraries are required to install or run.

You still need a template database (.h5) to scan against; it is not bundled in the wheel. See Template Database.

Language support

The embedded ocrs recognizer reads Latin and Russian (Cyrillic) text natively, and the closed set of localized stockpile-type names (including Chinese). No extra packages or language flags are needed for any of that.

The one exception is free-form Chinese custom names, which are read via the system tesseract CLI if it is installed — detected at runtime, entirely optional. If tesseract is absent, everything else still works and only the Chinese custom name is left unread (no error).

OS Optional install (Chinese custom names)
Debian/Ubuntu sudo apt install tesseract-ocr tesseract-ocr-chi-sim
Fedora/RHEL sudo dnf install tesseract tesseract-langpack-chi_sim
macOS (Homebrew) brew install tesseract tesseract-lang
Windows UB Mannheim installer (select Chinese) or choco install tesseract

Override the binary or language via FS_OCR_TESSERACT / FS_OCR_TESSERACT_LANG (defaults tesseract / chi_sim).

From Source

The build needs only a C/C++ toolchain — HDF5 is built from source via the static-hdf5 feature. No OpenCV or Tesseract dev libraries required:

# Build deps (Ubuntu/Debian)
sudo apt-get install cmake gcc g++ libclang-dev

# Build and install the Python module
pip install maturin
maturin develop --release

# Or build the standalone CLI (no Python / libpython linkage)
cargo build --release --no-default-features --bin fs-ocr

Python Usage

from fs_ocr import StockpileScanner, ScanConfig
import numpy as np

# Create scanner (data_path holds the OCR model files, default "data")
scanner = StockpileScanner(database_path="templates.h5", data_path="data")

# Scan from NumPy array (H x W x 3, uint8, BGR)
image = np.array(...)  # Your image data
result = scanner.scan(image, faction="wardens")
print(result.to_json())

# Scan from file
result = scanner.scan_file("screenshot.png", faction="colonials")

# With custom config
config = ScanConfig(confidence_gap=0.02)
result = scanner.scan(image, config=config)

# Access result data
for item in result.items:
    print(f"{item.code}: {item.quantity} (confidence: {item.confidence:.2f})")

API Reference

StockpileScanner

Main scanner class.

scanner = StockpileScanner(
    database_path: str,      # Path to HDF5 template database
    data_path: str = "data"  # Path to OCR model files directory
)

result = scanner.scan(
    image: np.ndarray,       # BGR image (H x W x 3, uint8)
    faction: str = None,     # "wardens", "colonials", or None
    config: ScanConfig = None
)

result = scanner.scan_file(
    image_path: str,         # Path to image file
    faction: str = None,
    config: ScanConfig = None
)

ScanConfig

Configuration options for tuning the matching pipeline.

config = ScanConfig(
    phash_threshold: int = 15,            # Max Hamming distance for pHash filter (lower=faster)
    max_ncc_candidates: int = 100,        # Hard cap on NCC candidates (upper bound of escalation)
    ncc_initial_candidates: int = 25,     # Initial NCC batch before adaptive escalation
    ncc_escalation_threshold: float = 0.9,# Escalate candidate count if best confidence below this
    confidence_gap: float = 0.0,          # Return alternatives within this gap of best match
    ncc_tiebreaker_threshold: float = 0.003  # Edge(Sobel)-based tiebreaker; 0.0 disables
)

# Serialize/deserialize
config.to_json() -> str
ScanConfig.from_json(json_str) -> ScanConfig

Stockpile

Scan result containing detected items.

stockpile.name             # Custom stockpile name (if applicable)
stockpile.type             # StockpileType enum
stockpile.is_reserve       # True when named something other than "Public"
stockpile.items            # List[StockpileItem]
stockpile.timestamp        # ISO 8601 scan timestamp
stockpile.shard            # Game shard name
stockpile.ingame_timestamp # In-game time (e.g. "Day 1293, 1906 Hours")
stockpile.resolution       # Screenshot resolution ("WxH")
stockpile.errors           # List of error messages
stockpile.timing           # Optional[Timing] per-stage metrics (None unless collected)
stockpile.to_json()        # Serialize to JSON (to_json_compact() for one line)

StockpileItem

Individual detected item.

item.code        # Item code or "Unknown"
item.quantity    # Detected quantity (-1 if failed)
item.crated      # Whether item is crated
item.confidence  # Match confidence (0.0 - 1.0)
item.candidates  # Alternative matches (if confidence_gap > 0)

CLI Usage

The crate also builds an fs-ocr binary that emits JSON.

# Scan a file
fs-ocr scan screenshot.png -d templates.h5 --faction wardens

# Read image from stdin ("-" or omit the path)
cat screenshot.png | fs-ocr scan -d templates.h5 --compact

# Print version
fs-ocr version

Matching can be tuned with --phash-threshold, --max-ncc-candidates, --ncc-initial-candidates, --ncc-escalation-threshold, --ncc-tiebreaker, and --confidence-gap. Set FS_OCR_TIMING=1 to include per-stage timing in the output. Exit codes: 0 ok, 1 runtime error, 2 bad input.

Template Database

fs-ocr matches icons against a pre-built HDF5 template database, supplied at runtime via the CLI --database flag or the StockpileScanner(database_path=...) argument. It is not bundled with the wheel or the CLI binary.

The database is generated separately from game assets by the foxhole-stockpiles project. Grab the .h5 file from its data/ directory and pass its path via --database / database_path.

fs-ocr scan screenshot.png -d fs_airborne.h5

Development

Commands

Command Description
cargo test Run the Rust test suite
cargo clippy --all-targets -- -D warnings Run linter (warnings as errors)
cargo fmt Format code with rustfmt
cargo build --release Build optimized library
cargo build --release --no-default-features --bin fs-ocr Build the standalone CLI (no libpython)
maturin develop --release Build and install Python module (dev)
maturin build --release Build Python wheel for distribution

Feature Flags

Feature Default Description
python on PyO3 + numpy bindings; drop with --no-default-features for a pure CLI
static-hdf5 off Build/statically link libhdf5 from source (used by CI wheels)

Requirements

  • Rust toolchain (edition 2021)
  • Python 3.10+ (for bindings)
  • Build tools: cmake, gcc/g++, libclang-dev
  • Optional runtime: system tesseract CLI (Chinese custom names only)

Dev Dependencies

pip install pytest numpy  # Python dev deps

Architecture

src/
├── lib.rs              # PyO3 module + StockpileScanner
├── bin/fs-ocr.rs       # CLI binary (clap)
├── constants.rs        # Hardcoded values / resolution scaling
├── error.rs            # Error types
├── config.rs           # ScanConfig
├── image_utils.rs      # RGB→grayscale, crop helpers
├── models/             # Output structs
│   ├── stockpile.rs
│   ├── stockpile_item.rs
│   └── timing.rs       # Per-stage Timing
├── enums/              # Type enums
│   ├── stockpile_type.rs
│   ├── item_faction.rs
│   └── item_category.rs
├── detector/           # ROI + grey mask detection
│   ├── black_box.rs    # Dark ROI localization (first pass)
│   ├── geometry.rs
│   └── grey_mask/      # detector + morphology + grouping
├── template/           # Template matching
│   ├── database.rs     # HDF5 loading
│   ├── matching.rs     # NCC + adaptive escalation + tiebreaker
│   ├── phash.rs        # Perceptual hashing
│   └── {label,public,type}_match.rs  # embedded-asset template matchers
├── ocr/                # Text + quantity extraction
│   ├── engine.rs       # OcrEngine trait + OcrConfig
│   ├── basic.rs        # OcrsEngine (pure-Rust ocrs)
│   ├── digit_matcher.rs# Glyph-template digit recognition (quantities)
│   ├── preprocess.rs   # upscale helpers
│   ├── quantity.rs     # Quantity validation
│   └── tesseract.rs    # ChineseNameReader (system `tesseract` CLI)
└── coordinator/        # Pipeline orchestration
    ├── pipeline.rs
    ├── region_preprocess.rs # OCR image prep (luma/contrast/framing/upscale)
    ├── metadata_parse.rs    # shard / timestamp / public-name parsing
    └── validation.rs

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fs_ocr-1.0.2.tar.gz (9.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fs_ocr-1.0.2-cp310-abi3-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.10+Windows x86-64

fs_ocr-1.0.2-cp310-abi3-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.28+ x86-64

fs_ocr-1.0.2-cp310-abi3-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file fs_ocr-1.0.2.tar.gz.

File metadata

  • Download URL: fs_ocr-1.0.2.tar.gz
  • Upload date:
  • Size: 9.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fs_ocr-1.0.2.tar.gz
Algorithm Hash digest
SHA256 cacccb60ddfbab0079f1860e08abe5c4c732ccebe5b0e97e0acc452543aa1d00
MD5 ac5ef954973c4b76d19df3e682e22cf4
BLAKE2b-256 c649fd9b3d0acc393d87baf7e31fe91cf038d56962d55cfd6df651afb666e6a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.2.tar.gz:

Publisher: release.yml on xurxogr/fs-ocr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fs_ocr-1.0.2-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: fs_ocr-1.0.2-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fs_ocr-1.0.2-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 abbfc7873b27c7f8b9771ae2055d220d59015115453a5490f8c7683820db340b
MD5 f00edaff90334c2d8d9aa74675cbf2e5
BLAKE2b-256 14af72dc9ca2b0b2b29defcdd42fed2c8355f7bdd875a2f092791da50b333272

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.2-cp310-abi3-win_amd64.whl:

Publisher: release.yml on xurxogr/fs-ocr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fs_ocr-1.0.2-cp310-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fs_ocr-1.0.2-cp310-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81bcec736080d654dc56fc4a5b42a6bf5f2f6449fc9cbee80e06f75bbe3959af
MD5 3d7f3cda950bb98a20bc404c6943b86c
BLAKE2b-256 6dfcc3a449ec72a436771124861775a2bbbd313acd3f907e4509bd088f30eddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.2-cp310-abi3-manylinux_2_28_x86_64.whl:

Publisher: release.yml on xurxogr/fs-ocr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fs_ocr-1.0.2-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fs_ocr-1.0.2-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1163321431d38a3b2290881cdd0fe434cb48acb9c37a40d96a719586cd686c3
MD5 92d39297cf3a4aa2b42c686e35fa24d9
BLAKE2b-256 9b482b58b8f8211cf5d1dc4f5ed1fb63dc720b6cf8f9adcff2f280ac82e7eed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.2-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on xurxogr/fs-ocr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page