Imeti is a fully local desktop application for image privacy and forensic analysis. It provides a suite of redaction and analysis tools that run entirely on your machine, with no data sent to the cloud.
It is intended for journalists protecting sources, security researchers analyzing suspicious files, and anyone who wants control over what their images reveal.
- Face Anonymization: AI-powered face detection with four anonymization methods — Gaussian blur, pixelation, black bar, and solid fill.
- Text Redaction: Automatically detects text regions in an image and redacts them using the EAST model.
- Metadata Scrubbing: Remove all metadata or selectively strip EXIF, IPTC, XMP, GPS data, ICC profiles, and hidden thumbnails.
- Batch Processing: Anonymize and clean entire folders of images at once.
- Steganography Scanner: Detects hidden data payloads using LSB analysis, chi-square tests, and entropy analysis.
- Watermark Detection: Frequency-domain analysis to flag invisible watermarks.
- Cryptographic Hashing: Computes SHA-256, SHA-1, and MD5 hashes for file integrity verification.
- Metadata Injection: Deliberately inject custom or fake EXIF data to mislead trackers.
You can install Imeti instantly via pip:
pip install imetiOnce installed, you can launch the app from anywhere in your terminal by simply typing:
imeti# Clone the repository
git clone https://github.com/Astrosp/Imeti.git
cd Imeti
# Install locally
pip install -e .Note: The first time you use Face Detection or Text Redaction, Imeti will briefly connect to the internet to download the required pre-trained AI models (~100MB). These are cached locally in the
models/directory afterward.
- Load Media — Drag and drop an image, click "Open Image," or select "Batch" to process a folder.
- Configure Options — Use the sidebar to enable or disable Face Anonymization, Text Redaction, or Metadata Stripping.
- Analyze — Run Steganography or Watermark scans from the forensic tools section.
- Process — Click "Process" to apply the selected redactions.
- Save — Click "Save" to export the sanitized image to disk.
Imeti is designed to operate entirely offline:
- No telemetry
- No analytics
- No cloud APIs
Your data never leaves your computer.
This project is licensed under the MIT License, free for personal use only. See the LICENSE file for details.


