1 pointby BhuvanChalla2 hours ago1 comment
  • BhuvanChalla2 hours ago
    I built OPP (Open Provenance Protocol), an open standard for verifying whether an image was AI-generated even after screenshots, compression, cropping, and re-uploads.

    The problem: C2PA/Content Credentials embed metadata in the file. Screenshot the image and the provenance is gone. AI detectors are probabilistic and unreliable.

    OPP takes a different approach, an external fingerprint registry. When a generator creates an image, a 3-layer signature (SHA-256 + PDQ perceptual hash + CLIP ViT-L/14 embedding) is registered in a central index. Anyone can verify an image by querying the index. The signature survives any transformation because it's not embedded in the file. Think Shazam for images, but for provenance.

    Matching pipeline: exact hash lookup → CLIP cosine similarity via Qdrant HNSW (sub-10ms at billions) → PDQ hamming distance enrichment.

    Only verified AI generators can mint. Verification is open.

    Early MVP. Looking for feedback on the protocol design and poking holes in the approach.