Skip to main content

Audit OpenCV checkerboard calibration datasets, detect weak or duplicate views, visualize image-plane coverage, calibrate the camera, and generate an explainable offline report.

Project description

OpenCV Calibration Audit

PyPI Version Python Versions License

Audit OpenCV checkerboard calibration datasets, detect weak or duplicate views, visualize image-plane coverage, calibrate the camera, and generate an explainable offline report.

This package provides a production-quality, installable tool to inspect and validate checkerboard image datasets used for monocular camera calibration with OpenCV. It's designed to be a reliable quality gate in computer vision and robotics pipelines.

The main differentiator of this tool is its focus on dataset quality analysis, explainable rejection reasons for bad images, and comprehensive reporting, rather than just being a minimal wrapper around cv2.calibrateCamera().

This project is intended to complement the opencv-chessboard-generator package.

Key Features

  • Dataset Validation: Checks for consistent image resolutions, sufficient image counts, and readable files.
  • Checkerboard Detection: Uses cv2.findChessboardCornersSB for robust corner detection.
  • Image Quality Metrics: Measures sharpness, board geometry, exposure, and perspective.
  • Dataset-Level Analysis: Analyzes field-of-view coverage, pose diversity (scale, orientation), and detects near-duplicate images.
  • Camera Calibration: Performs a standard pinhole camera calibration.
  • Explainable Results: Provides clear, structured reason codes for every rejected or flagged image.
  • Rich Reporting: Exports results to JSON, YAML, CSV, and a self-contained HTML report.
  • CLI and Python API: Usable as both a command-line tool and a Python library.

Installation

pip install opencv-calibration-audit

Quick Start

Run an audit on a directory of calibration images with the following command:

calibration-audit analyze ./calibration_images \
  --cols 9 \
  --rows 6 \
  --square-size 30 \
  --unit mm \
  --output ./audit_result

Important Convention: Inner Corners

The --cols and --rows arguments always refer to the number of inner corners on the checkerboard, not the number of squares.

For a 10x7 checkerboard (10 squares by 7 squares), the number of inner corners is 9x6.

+---+---+---+---+
| ● | ● | ● | ● |  <-- 4x3 inner corners
+---+---+---+---+
| ● | ● | ● | ● |
+---+---+---+---+
| ● | ● | ● | ● |
+---+---+---+---+

Python API Usage

from pathlib import Path

from calibration_audit import AuditConfig, PatternSpec, audit_dataset

# This is a future-state example; audit_dataset is not yet implemented in Phase 1
# config = AuditConfig(
#     pattern=PatternSpec(
#         cols=9,
#         rows=6,
#         square_size=30.0,
#         unit="mm",
#     ),
#     min_valid_images=12,
# )

# result = audit_dataset(
#     image_directory=Path("./calibration_images"),
#     config=config,
# )

# print(result.summary)
# result.write_outputs(Path("./audit_result"))

Limitations (MVP)

The initial version focuses on monocular, pinhole camera calibration with standard checkerboards. The following are explicitly excluded from the MVP:

  • Stereo, fisheye, or multi-camera calibration
  • ChArUco, ArUco, or circle-grid targets
  • Live camera capture or GUI interfaces

Development

To set up a development environment:

# Clone the repository
git clone https://github.com/flavvesResearch/opencv-calibration-audit.git
cd opencv-calibration-audit

# Install in editable mode with dev dependencies
pip install -e .[dev]

# Run tests
pytest

# Run linters and type checkers
ruff check .
mypy .

CI/CD

  • Pushes and pull requests run Ruff, Mypy, Pytest, a build check, twine check, and a CLI smoke test in GitHub Actions.
  • After CI passes on main, GitHub Actions creates a unique .postN release tag, creates a GitHub Release, and publishes the package to PyPI.
  • Pushing a version tag that starts with v creates a GitHub Release and publishes the package to PyPI through Trusted Publishing.

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

opencv_calibration_audit-0.1.0.post10.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file opencv_calibration_audit-0.1.0.post10.tar.gz.

File metadata

File hashes

Hashes for opencv_calibration_audit-0.1.0.post10.tar.gz
Algorithm Hash digest
SHA256 adfd30d1317c153f94aa22742cad58509263c5ffaa21d644e6030a15da1a885e
MD5 d6841befe9279cf07517efdb384ce704
BLAKE2b-256 8d5e8e35d56e5865d878bb245bda944b9f9341d5fd3f25ed7bc7d756a96a8fcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for opencv_calibration_audit-0.1.0.post10.tar.gz:

Publisher: release.yml on flavvesResearch/opencv-calibration-audit

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

File details

Details for the file opencv_calibration_audit-0.1.0.post10-py3-none-any.whl.

File metadata

File hashes

Hashes for opencv_calibration_audit-0.1.0.post10-py3-none-any.whl
Algorithm Hash digest
SHA256 1850cdb04b1a8bd0034f206676a5e3b23062db35e3aa3502a54de4cec18e6e9d
MD5 eb0cab6aa986155ac83ff1ad41244fcc
BLAKE2b-256 dc9a704bf918fa5fa0d33ee90b6068212c5056022b88b253fb8d35d102f0cf5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opencv_calibration_audit-0.1.0.post10-py3-none-any.whl:

Publisher: release.yml on flavvesResearch/opencv-calibration-audit

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