An implementation of ZERO: a JPEG grid detector applied to forgery detection in digital images.
The approach is described in the following paper:
text
Tina Nikoukhah, Jérémy Anger, Miguel Colom, Jean-Michel Morel, and Rafael Grompone von Gioi,
ZERO: a Local JPEG Grid Origin Detector Based on the Number of DCT Zeros and its Applications in Image Forensics,
Image Processing On Line, 11 (2021), pp. 396–433. https://doi.org/10.5201/ipol.2021.390
The original implementation is written in C.
Simple usage:
```rust,no_run
# for r in Zero::fromimage(&jpeg).intoiter() { println!( "Forged region detected: from ({}, {}) to ({}, {})", r.start.0, r.start.1, r.end.0, r.end.1, ) } ```
More advanced usage:
```rust,no_run
# let foreigngridareas = Zero::fromimage(&jpeg).detectforgeries(); let missinggridareas = foreigngridareas .detectmissinggridareas() .unwrap() .unwrap(); let forgedregions = foreigngridareas .forgedregions() .iter() .chain(missinggridareas.forgedregions()); for r in forged_regions { println!( "Forged region detected: from ({}, {}) to ({}, {})", r.start.0, r.start.1, r.end.0, r.end.1, ) } ```
You can use the example to generate the forgery masks of an image:
shell
cargo r --release --example zero image.jpg