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.3.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.3-cp310-abi3-win_amd64.whl (14.6 MB view details)

Uploaded CPython 3.10+Windows x86-64

fs_ocr-1.0.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: fs_ocr-1.0.3.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.3.tar.gz
Algorithm Hash digest
SHA256 bad06fd0e28ca9f26a52990ce4ac67c151b127bd0e8895315f5c50be86a9b83a
MD5 93e31789c769de049dc6af0c8b511ca4
BLAKE2b-256 e178436705644b5aa40244d5752abf9c7e5ee5391515bccc9064d7e73aa18cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.3.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.3-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: fs_ocr-1.0.3-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.3-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4f5b19ff63143cd1e07573febca454a496ff76b2d32f25ba264a8a8207a6b52a
MD5 4f733ee1a906c74acee94f0eb1f8adc2
BLAKE2b-256 c0ac241de4063978115c22c03232271c5034857b5b0441447cd17ba8420d5aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.3-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.3-cp310-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fs_ocr-1.0.3-cp310-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7f0117989bb64cbe178709b1f1f3f5c37a1ce7fbdcae7683ac4f199c8baa286
MD5 c697036e91df3bd3daecbf8f3f65e1ff
BLAKE2b-256 bbb3522bca3a0a8518feb2b31049759571cedaaae85560caaf9a79f384113edc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.3-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.3-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fs_ocr-1.0.3-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8277ae684aaf2cea11b81e9415f13baf36568a657d3efd5d4a54a63dd4eb9ec3
MD5 77b785261fc7a7e0e13c5106c6c9a8ef
BLAKE2b-256 3b8c565f8e276bcf1dae171bc41e7e74842eaaf1b9d161ee291dbea10c2e56e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fs_ocr-1.0.3-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