pythonpython-3.ximageimage-processingcomputer-forensics

Finding a modified image - image forensics


I have a couple of standard ways of detecting a modified image such as

  1. Luminance gradient
  2. Copy move detection
  3. Metadata Extraction
  4. Histogram analysis
  5. ELA(Error level analysis)
  6. Quantization matrix analysis
  7. Thumbnail analysis

are there any other standard ways of detecting a modified image?

Tried out

Here are my questions


Solution

  • The answer to this question needs more detailed so, I will give some references to the subject itself and I will share with you the code of every part of your question :

    You need to use exif to verify the image with metadata

    For Anomaly Detection in Images see here

    To compare the thumbnail image to the original image read this. where it showed you how to compare two images using Python.

    References :