#hash #image #fuzzy #convert-images #pdq

pdqhash

Perceptual Hashing, originally designed by Facebook. Identify the same image even after some modifications.

2 releases

0.1.1 Jul 8, 2022
0.1.0 Jul 8, 2022

#882 in Images

Download history 75/week @ 2023-12-11 81/week @ 2023-12-18 11/week @ 2023-12-25 29/week @ 2024-01-01 61/week @ 2024-01-08 228/week @ 2024-01-15 143/week @ 2024-01-22 117/week @ 2024-01-29 136/week @ 2024-02-05 190/week @ 2024-02-12 110/week @ 2024-02-19 208/week @ 2024-02-26 356/week @ 2024-03-04 174/week @ 2024-03-11 220/week @ 2024-03-18 104/week @ 2024-03-25

858 downloads per month

Apache-2.0

4MB
601 lines

PDQ Hash

This hash is a pure Rust implementation of the PDQ algorithm described here.

Calculation

The PDQ algorithm was developed and open-sourced by Facebook (now Meta) in 2019. It specifies a transformation which converts images into a binary format ('PDQ Hash') whereby 'perceptually similar’ images produce similar outputs. It was designed to offer an industry standard for representing images to collaborate on threat mitigation.

Obtain PDQ Hash of an image

Comparing two images reduces to computing distance (for example, Hamming distance) between their representations, or as % bit similarity. Comparing two bit strings

(16 bits are just used here for easier interpretation; PDQ hashes represent 256 bits)

Consider additional image transformations

Additionally, PDQ hashes for rotations and mirrors of the original image can be inferred efficiently, by just manipulating the Discrete Cosine Transform created in latter stages of processing. Comparing two bit strings Example: PDQ Hash of mirrored original image only requires manipulation of the transform

DCT Manipulation needed for corresponding PDQ Hash

  • Mirrored Y -> Negate alternate columns
  • Mirrored X -> Negate alternate rows
  • Mirrored Main Diagonal -> Transpose
  • Mirrored Off Diagonal -> Negate off-diagonal, transpose
  • Rotated 90 -> Negate alternate columns, transpose
  • Rotated 180 -> Negate off-diagonal
  • Rotated 270 -> Negate alternate rows, transpose

Offering similarity resilience

The resulting hashes are resilient to certain transformations, some more so than others, to detect additional attempted manipulation. Generally, images retaining overall structure are more resilient than changes to pixel positions and larger areas of pixel change. Obtain PDQ Hash of an image

Transformations that result in similar hashes:

  • File format change
  • Quality reduction
  • Light crops and shifts
  • Rotations (when additional hashes compared)
  • Resizing
  • Light watermarks
  • Mirroring (when additional hashes compared)
  • Noise or filter applied
  • Light logos

Dependencies

~13MB
~57K SLoC