Skip to main content

AMFOrA (Automated Macroscopic Fabric and Orientation Analysis)

A Python package for automated quantitative analysis of ceramic sherd fabric from flatbed-scanner images — inclusion detection, void analysis, size and orientation measurements, and color characterization.

Built for archaeological and materials-science workflows that need reproducible, DPI-aware measurements across many sherds.

Developed at the University of Washington's Digital Archaeology Research Laboratory (DigAR Lab)

Features

  • Inclusion detection — Blob and contour-based detectors with a paste-anchored MAD-scaled pop gate that handles dense clusters, fine grains on uniform paste, and mottled tempers consistently.
  • Void analysis — Brightness-gated dark feature detection that separates pores from dark mineral inclusions.
  • Watershed cluster recovery — Dense touching grains are split into individual sub-grains rather than being counted as one lumpy contour.
  • Size and density metrics — Areas in cm², densities per cm², with the denominator computed over the actually-searched area (not the full sherd) so cross-sherd comparisons stay valid.
  • Orientation and color — Per-inclusion orientation distributions and CIELAB color summaries.
  • Batch processing — Run a whole folder of sherd scans into a single CSV via full_analysis.

Installation

pip install amfora

Or, to develop against the latest source:

git clone https://github.com/aleciaco/AMFOrA_public.git
cd AMFOrA_public
pip install -e .

PyPI project page: pypi.org/project/amfora

Dependencies

Python 3.10+, OpenCV, NumPy, pandas, matplotlib, SciPy, scikit-image, Pillow. All pulled in automatically by pip install.

Quickstart

import cv2
import amfora

# Load a raw scanned sherd image (background still present)
image = cv2.imread('sherd.jpg')

# One-call analysis: masking, blob + contour detection, color, orientation
results = amfora.analyze_single_sherd(image, scan_dpi=1200)

print(f"Blob inclusions: {results['blob_inclusion_count']}")
print(f"Contour inclusions: {results['contour_inclusion_count']}")
print(f"Inclusion density: {results['contour_inclusion_density_per_cm2']:.1f} per cm²")

For a batch of sherds in a folder:

df = amfora.full_analysis('path/to/sherd_scans/', scan_dpi=1200)
df.to_csv('results.csv')

See examples/ for working notebooks (and example sherd images) and docs/ for the full user guide.

Documentation

AMFOrA Docs -- GitHub Docs

Core entry points

  • analyze_single_sherd(image, scan_dpi) — Mask + detect + measure a single sherd; returns a dict of metrics.
  • full_analysis(folder_path, scan_dpi) — Run analyze_single_sherd over a directory; returns a pandas DataFrame and writes CSV.
  • sherd_mask(image, scan_dpi) — GrabCut-based mask isolating the sherd from scanner background.
  • sherd_blobs(masked_image, scan_dpi) — SimpleBlobDetector with adaptive thresholds and paste-anchored pop gating.
  • contour_detection(masked_image, scan_dpi) — Contour-based detection with watershed cluster recovery and multigrain split.

Every function has a NumPy-style docstring with parameter and return-value details.

DPI and units

All measurements are DPI-aware. The default is scan_dpi=1200. Conversion factor is dpcm = scan_dpi * 0.3937; areas are returned in cm². Set scan_dpi to match your scanner.

Scientific applications

Designed for:

  • Quantitative petrographic analysis of ceramic fabrics
  • Inclusion size and shape distribution studies
  • Void analysis (organic burnout, shrinkage cracks)
  • Orientation analysis of elongated inclusions
  • Color characterization (paste, inclusion populations, core-periphery firing-atmosphere indicators)

Cross-fabric inclusion-density comparisons are limited by optical contrast: grains that share the matrix's color are invisible to scanning regardless of detection parameters. See analyze_single_sherd's docstring for the full discussion and the R08G/R08TC calibration data showing the ~2.3× density gap on bars sharing identical sand temper.

Contributing

Pull requests welcome — see CONTRIBUTING.md for development setup, code style, and PR guidelines. By participating you agree to the Code of Conduct.

Disclosure: use of generative AI tools

Parts of this package have been developed and refined with assistance from generative AI tools (Anthropic Claude, primarily for testing, repackaging in modern Python standards, docstring and documentation drafting, code review, and iterative tuning of detector parameters). All algorithmic design decisions, validation against real sherd data, and final acceptance of changes were performed by the human maintainer. As a solo archaeologist who knows Python, I had a glaring gap in my ability to actually format the github in the modern standard where it would be useful by other researchers, so I turned to Anthropic Claude to help format the documentation, make docstrings make enough sense for other users, write tests, and do linting/CI because I had never learned how to do that. If there are any issues with this content, please reach out or suggest better ways of maintaining it!

License

MIT License — see LICENSE.

Citation

If you use AMFOrA in published work, please cite:

Iacobucci, A. (2026). AMFOrA: Automated Macroscopic Fabric and Orientation Analysis for ceramic sherds (Version 1.0.2) [Computer software]. https://pypi.org/project/amfora/

A DOI / Zenodo archive will be added in a future release.

Support

Download files

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

Source Distribution

amfora-1.0.2.tar.gz (109.5 kB view details)

Uploaded Source

Built Distribution

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

amfora-1.0.2-py3-none-any.whl (108.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: amfora-1.0.2.tar.gz
  • Upload date:
  • Size: 109.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for amfora-1.0.2.tar.gz
Algorithm Hash digest
SHA256 7e5b31d7f26728cd381638fb1ea80c5eee5f2b816c142d4d19dece0eb3878811
MD5 34dceefaa06e78e6137ee890daf7f39c
BLAKE2b-256 f573a6a0fcd22578d90c1667f0c3793d44c33efb2b9f6a84a7209cb8f84b207e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on aleciaco/AMFOrA_public

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

File details

Details for the file amfora-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: amfora-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 108.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for amfora-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 04932cfa327024371bb39d5e74537ce56fc6053590c4c300764fbdbe5b371368
MD5 2acbb74fd2c020d5b634933701daff17
BLAKE2b-256 2555840cdb02a4f41a17853f0fe6139b7377bb8d55c678a964cdc73a846c2e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for amfora-1.0.2-py3-none-any.whl:

Publisher: publish.yml on aleciaco/AMFOrA_public

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

Release history Release notifications | RSS feed

1.0.3

2 files

This release

1.0.2 This release

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page