Skip to main content

Fast and robust MRZ extraction, parsing, and validation using PaddleOCR

Project description

OmniMRZ — Python MRZ Extraction & Validation Library for Passport OCR and KYC

License Downloads Python CodeQL PyPI

OmniMRZ is an open-source Python library for Machine Readable Zone (MRZ) extraction, parsing, and ICAO-9303 validation from passport and ID images, built for OCR, KYC, and identity verification systems.

It is a production-grade MRZ extraction and validation engine designed for high-accuracy KYC, identity verification, and document intelligence pipelines.

Unlike simple MRZ readers, OmniMRZ evaluates whether an MRZ is structurally correct, cryptographically valid, and logically plausible.

Typical Use Cases

🛂 Passport and ID card OCR pipelines
🏦 KYC / AML identity verification systems
✈️ Border control and immigration preprocessing
📄 Document digitization and archiving
🔐 Authentication and onboarding workflows

⭐ Show Your Support If OmniMRZ helped you or saved development time: 👉 Please consider starring the repository It helps visibility and motivates continued development

Features

Installation

Contributing

Why OmniMRZ?

Unlike basic MRZ readers, OmniMRZ provides end-to-end MRZ quality assurance:

  • Combines OCR, structural validation, checksum verification, and logical consistency checks
  • Fully compliant with ICAO 9303
  • Designed for production KYC and identity verification systems
  • Robust against OCR noise and partially corrupted MRZ lines

Features

At a glance

  • MRZ detection and extraction from images
  • Supports TD3 (passport) format
  • Checksum validation (ICAO 9303)
  • Logical and structural validation
  • Clean Python API

Detailed features

🔍 MRZ Extraction

  • PaddleOCR-based MRZ text extraction (robust on mobile & noisy images)
  • Intelligent MRZ line clustering & reconstruction
  • Automatic MRZ type detection (TD1 / TD2 / TD3)
  • OCR noise filtering & MRZ-safe character normalization
  • Works even with partially corrupted or misaligned MRZs

🧱 Structural Validation (ICAO 9303)

  • Exact line-length enforcement
  • Strict MRZ format verification
  • Field-level structural checks
  • Early-exit gating for invalid layouts

🔢 Checksum Validation

  • Fully ICAO-9303 compliant checksum algorithm
  • Field-level validation:
  • Document number
  • Date of birth
  • Expiry date
  • Composite checksum
  • OCR-error tolerant digit correction (O→0, S→5, B→8, etc.)
  • Detailed checksum failure diagnostics

🧠 Logical & Semantic Validation

  • Expired document detection
  • Future date-of-birth detection
  • Implausible age detection
  • DOB ≥ expiry detection
  • Gender value validation (M, F, X, <)
  • Cross-field consistency signals (issuer vs nationality)

📤 Output

  • Clean MRZ text
  • Structured JSON
  • Deterministic pass / fail / warning signals
  • Human-readable error messages

Installation

pip install omnimrz

Note: PaddleOCR requires additional system dependencies. Please ensure PaddlePaddle installs correctly on your platform.

pip install paddleocr
pip install paddle paddle

or if that fails then run

python -m pip install paddlepaddle==3.0.0 -i https://www.paddlepaddle.org.cn/packages/stable/cpu/

Quick Usage

from omnimrz import OmniMRZ

omni = OmniMRZ()
result = omni.process("ukpassport.jpg")

print(result)

Output Example

{
    "extraction": {
        "status": "SUCCESS(extraction of mrz)",
        "line1": "P<GBRPUDARSAN<<HENERT<<<<<<<<<<<<<<<<<<<<<<<",
        "line2": "7077979792GBR9505209M1704224<<<<<<<<<<<<<<00" 
    },
    "structural_validation": {
        "status": "PASS",
        "mrz_type": "TD3",
        "errors": []
    },
    "checksum_validation": {
        "status": "PASS",
        "errors": []
    },
    "parsed_data": {
        "status": "PARSED",
        "data": {
            "document_type": "P",
            "issuing_country": "GBR",
            "surname": "PUDARSAN",
            "given_names": "HENERT",
            "document_number": "707797979",
            "nationality": "GBR",
            "date_of_birth": "1995-05-20",
            "gender": "M",
            "expiry_date": "2017-04-22",
            "personal_number": ""
        }
    },
    "logical_validation": {
        "status": "FAIL",
        "errors": [
            "DOCUMENT_EXPIRED"
        ]
    },
    "screenshot_detection": {
        "status": "PASS",
        "is_screenshot": false,
        "score": 3,
        "confidence": 30.0,
        "reasons": [
            "Low ELA: 0.38",
            "High horizontal edges: 0.51",
            "High sharpness: 2029.58"
        ]
    }
}

Citing OmniMRZ

If you use OmniMRZ in academic research or publications, please consider citing this repository:

Contributing

Contributions are welcome!🤝

  1. Fork the repository
  2. Create your feature branch
git checkout -b feature/amazing-feature
  1. Commit your changes
  2. Push to your branch
  3. Open a Pull Request

Keywords

MRZ extraction, passport OCR, machine readable zone, ICAO 9303, MRZ parser, Python OCR, identity verification, KYC automation, document intelligence, ID card scanning, border control OCR

misc

Visitor Count

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

omnimrz-0.2.0.tar.gz (30.2 MB view details)

Uploaded Source

Built Distribution

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

omnimrz-0.2.0-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file omnimrz-0.2.0.tar.gz.

File metadata

  • Download URL: omnimrz-0.2.0.tar.gz
  • Upload date:
  • Size: 30.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for omnimrz-0.2.0.tar.gz
Algorithm Hash digest
SHA256 74351a00fb89ff9f202214d041f1ec89acc606488f198618a834ba8419a77df4
MD5 f2ea66740b9291ea74c1c174858d7de2
BLAKE2b-256 3d5512d48260e1085c185ae5a7b352ad14157a0a558f960ec41f3e0f35f5474c

See more details on using hashes here.

File details

Details for the file omnimrz-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: omnimrz-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for omnimrz-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4dd5c9139c192704507e5c20f976253d800d95791e10c0c2ec5f6b3585f25e9b
MD5 c07e9a393b5421663baba6d925811603
BLAKE2b-256 1333695cef637f8b2b10d7422860043cc7dc240f5006f2612ed3be0e62435400

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