Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minosse

AI-generated image detection — no ML model, just signal processing.

PyPI version Python License: MIT

Install

pip install minosse

That's it — only numpy, pillow, and scipy come along. No GPU, no model weights, no network calls.


What it does

Minosse looks for tell-tale traces that diffusion models and neural upsamplers leave behind: ringing halos around text, noise in flat regions that shouldn't have any, and a synthetic signature in the high-frequency spectrum.

Signals

Signal What it catches How it works
ringing Diffusion VAE decoder halos Radial profile of band-pass energy vs. distance from strong edges. Real edges decay fast; ringing persists 10–40 px out.
noisy-flats AI "film grain" on solid panels RMS residual noise inside coarse-flat regions. Real screenshots are truly flat; JPEG smooths photo flats.
synthetic-noise Upsampled / generated noise Spectral energy at the Nyquist ring vs. mid frequencies. Real sensor noise stays hot at the highest frequencies; synthetic noise dies off.

An image is flagged if any signal fires; the fired signals are reported along with the raw feature values.

Quick start

As a CLI

# Analyse a single image
minosse path/to/image.png

# Analyse multiple images with visual proof sheets
minosse --proof results/ image1.png image2.jpg

As a Python library

from minosse import analyze, analyze_path, Result

# From a file path
r = analyze_path("image.png")
print(r.verdict)       # "likely AI-generated/edited" or "likely clean"
print(r.reasons)       # e.g. ["ringing", "synthetic-noise"]
print(r.decay)         # ringing feature value
print(r.vhf_mf)        # spectral ratio feature value
print(r.flat_noise)    # flat-region noise feature value
print(r.resid_std)     # overall residual noise

# From a PIL Image
from PIL import Image
img = Image.open("image.png")
r = analyze(img)

Result fields

Field Type Description
verdict str "likely AI-generated/edited" or "likely clean"
reasons list[str] Fired signal names: ringing, noisy-flats, synthetic-noise
score float Confidence score [0, 1] (0.75 per firing signal, capped at 1.0)
decay float Ringing persistence: mid-distance / near-edge band energy
halo_vs_bg float Mid-distance energy vs. image background
vhf_mf float Spectral ratio: Nyquist ring / mid frequencies
resid_std float Standard deviation of the noise residual
flat_noise float RMS residual inside coarse-flat regions

Visual proof from Python

from minosse import analyze, evidence
from PIL import Image

img = Image.open("image.png")
r = analyze(img)
sheet = evidence.render(img, r)
sheet.save("proof.png")

--proof output

The --proof flag writes <name>_proof.png: a side-by-side sheet with the original image next to one panel per fired signal, with the artifact evidence burned in as a red heatmap.

Heat is scaled absolutely (calibrated to the detection thresholds), so clean images render dark — the glow itself is the proof. For ringing, the map only shows oscillation in regions that should be smooth (8–40 px from strong edges, locally flat at coarse scale), so legitimate texture doesn't light up.

Development install

git clone https://github.com/cesp99/Minosse.git
cd Minosse
python -m venv .venv
.venv/bin/pip install -r requirements.txt

.venv/bin/python -m minosse path/to/image.png
.venv/bin/python -m minosse --proof results/ image1.png image2.jpg

Project structure

minosse/
├── minosse/
│   ├── __init__.py      # Public API: analyze, analyze_path, Result
│   ├── __main__.py      # python -m minosse entry point
│   ├── cli.py           # Argument parsing and CLI loop
│   ├── detector.py      # Feature extraction + threshold logic
│   └── evidence.py      # Visual proof sheet renderer
├── results/             # Default --proof output directory
├── requirements.txt     # numpy, pillow, scipy
└── README.md

How it works (briefly)

  1. Preprocessing — the image is converted to RGB and downscaled if its longest edge exceeds 1600 px.
  2. Feature extraction (detector._features()) — three independent signal-processing pipelines compute scalar features from the grayscale luminance.
  3. Thresholding — each feature is compared against a tuned threshold; if it exceeds the threshold the corresponding signal is flagged.
  4. Verdict — if any signal fires, the image is marked likely AI-generated/edited; otherwise it's likely clean.

For a deeper explanation of each signal, see docs/signals.md.

Caveats

The thresholds are calibrated on a small set of examples and should be re-validated as more AI samples are added. See docs/tuning.md for instructions on re-tuning.

Links

License

MIT

About

AI Detector based off algorithmic noise analysis

Resources

Contributing

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages