Skip to main content

Read inventory cards, extract images, and create structured data.

Project description

inventory-ocr

This is a tool to extract structured data from fixed layout documents such as inventory cards, inventory books or tables. It requires layout definitions provided in inventory_ocr/config/regions.yaml. Currently, it is optimized to work with a collection of jewelry from the Schmuckmuseum Pforzheim, but with minor adaptations it should be adaptable to other use cases.

Specifically, to adapt this for your own data:

  • Define a different document layout in inventory_ocr/config/regions.yaml
  • Implement your own post-processing by subclassing the abstract PostProcessor class in inventory_ocr/postprocessor.py

Installation

Set up your environment using your favourite environment management tool. We recommend venv.

  • Development (editable) install: Clone this repository, navigate into the project root and type

    pip install -e .
    
  • Regular install: Activate your virtual environment and type

    pip install inventory-ocr
    

The package will install a platform-specific OCR backend by default:

  • On macOS the package uses Apple Vision via the ocrmac package.
  • On Windows and Linux the package uses pero-ocr.

A plain pip install will therefore pull in the appropriate OCR backend for your OS automatically (see pyproject.toml markers).

Usage

Invoke using inventory-ocr <input folder> with input folder specifying a path to the inventory cards to be processed. Results will be saved to output/ relative to the current working directory.

Command Line Arguments

inventory-ocr <input_dir> [options]

Required Arguments:

  • input_dir: Path to the input directory containing files to process

Optional Arguments:

  • --output_dir: Path to the output directory (default: ./output)
  • --layout_config: Path to the layout configuration file (YAML). Defaults to 'inventory_ocr/config/regions.yaml'.
  • --annotate: Launch the interactive layout annotation UI to create/save a regions file
  • --ocr_engine: OCR engine to use (choices: auto, ocrmac, pero, mistral, dummy; default: auto)
  • --eval: Run in evaluation mode (uses dummy detector and benchmarking postprocessor)

Annotation / Generating Regions

  • The repository contains an example regions file under inventory_ocr/config/example_regions.yaml. You can copy this to inventory_ocr/config/regions.yaml to use it as the default layout definition.
  • To create your own layout interactively, run the tool with the --annotate flag. This launches a small Gradio UI that lets you mark regions on a template image. When you press "Extract Layout" the regions are written to the layout configuration path (see --layout_config, default inventory_ocr/config/regions.yaml) and the annotation UI will close.
  • If you prefer not to use the example, simply delete or rename inventory_ocr/config/example_regions.yaml, or replace inventory_ocr/config/regions.yaml with your own configuration file.

Example:

# use the bundled example regions (if present)
inventory-ocr ./data

# interactively generate and save regions to the default config path
inventory-ocr ./data --annotate

# specify a custom path for the generated regions
inventory-ocr ./data --annotate --layout_config ./my_regions.yaml

Generated YAML uses a top-level regions: mapping where each field name maps to a 4-element list [x1, y1, x2, y2] with normalized coordinates (0..1).

Supported OCR Engines

The tool supports multiple OCR engines with automatic platform-based selection:

  • PERO OCR (pero): Default for non-macOS platforms
  • Apple Vision API (ocrmac): Default for macOS platforms
  • Mistral OCR (mistral): AI-powered OCR using Mistral models
  • Dummy (dummy): For development and testing purposes
  • Auto (auto): Automatically selects ocrmac on macOS, pero on other platforms

Installing Optional Dependencies

Different OCR engines require additional dependencies:

For PERO OCR (non-macOS default):

pip install inventory-ocr[pero]

For Mistral OCR:

pip install inventory-ocr[mistral]

You'll also need to obtain a Mistral API key and store it in a .env file in your project root:

  1. Copy .env.template to .env:

    cp .env.template .env
    
  2. Edit .env and replace INSERT_YOUR_KEY_HERE with your actual Mistral API key:

    MISTRAL_API_KEY=your_actual_api_key_here
    

Note: Never share your API key publicly or commit it to version control.

For Apple Vision API (macOS only): The ocrmac package is automatically installed on macOS systems. No additional installation required.

Note: The auto engine selection will use Apple Vision API on macOS (if available) and PERO OCR on other platforms.

Configuration

Region Definition

Regions (in relative coordinates) and field names are stored in inventory_ocr/config/regions.yaml (or the path you pass via --layout_config) and can be adapted according to the use case.

The region definition format uses normalized coordinates where each region is defined as [x1, y1, x2, y2] with values between 0 and 1:

  • x1, y1: Top-left corner coordinates (relative to document width and height)
  • x2, y2: Bottom-right corner coordinates (relative to document width and height)

custom_header_mappings: am: 'erworben am' # Maps "am" field to "erworben am" in output

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

inventory_ocr-0.0.6.tar.gz (42.6 kB view details)

Uploaded Source

Built Distribution

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

inventory_ocr-0.0.6-py3-none-any.whl (42.5 kB view details)

Uploaded Python 3

File details

Details for the file inventory_ocr-0.0.6.tar.gz.

File metadata

  • Download URL: inventory_ocr-0.0.6.tar.gz
  • Upload date:
  • Size: 42.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for inventory_ocr-0.0.6.tar.gz
Algorithm Hash digest
SHA256 7012774a538e803298bf62f9cf0d91f6b4ff4c977ca822c5d51b311d007741f6
MD5 d3a6b9afda4e5f9e6a977782496b0567
BLAKE2b-256 1f1f61ab6979ac8ed1e04303507e151907b6582d68c7ee7f14f703ec29dfc4db

See more details on using hashes here.

File details

Details for the file inventory_ocr-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: inventory_ocr-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for inventory_ocr-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 f3392de4a0b70154e85b89f3a74e618c7657521d38cde861e426e751b4cfbd2b
MD5 d44fb6bb24c80b1003f10fdb6f97be10
BLAKE2b-256 a99c4427682806218eab59f25bf36e3b3559b48c5eca7a0bbe5b49f718e619cf

See more details on using hashes here.

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