Skip to main content

Implementation of modern image steganalysis algorithms

Project description

PyPI version Commit CI/CD Release CI/CD Documentation Status PyPI downloads Stars Contributors Wheel Status

Last commit

sealwatch

Python package, containing implementations of modern image steganalysis algorithms.

:warning: This project is under intensive development as we speak.

Installation

Simply install the package with pip3

pip3 install sealwatch

or using the cloned repository

git clone https://github.com/uibk-uncover/sealwatch/
cd sealwatch
pip3 install .

Import to Python by typing

import sealwatch as sw

Contents

Abbreviation Dimensionality Domain Reference Output format
SPAM: subtractive pixel adjacency matrix 686 spatial Reference ordered dict
JRM: JPEG rich model 11255 JPEG Reference ordered dict
CC-JRM: cartesian-calibrated JRM 22510 JPEG Reference ordered dict
DCTR: discrete cosine transform residual features 8000 spatial Reference ordered dict
PHARM: phase-aware projection rich model 12600 JPEG Reference ordered dict
GFR: Gabor filter residual features 17000 JPEG Reference 5D array
SRM: spatial rich models 34671 spatial Reference ordered dict
SRMQ1: SRM with quantization 1 12753 spatial Reference ordered dict
CRM: color rich models 5404 spatial Reference ordered dict

These implementations are based on the Matlab reference implementations provided by the DDE lab at Binghamton University.

Usage

Extract GFR features from a single JPEG image

features = sw.gfr.extract("seal1.jpg")

After having extracted features from cover and stego images, you can train an FLD ensemble as binary classifier.

import numpy as np

Xc_tr, Xs_tr, Xc_te, Xs_te = sw.ensemble_classifier.helpers.load_and_split_features(
    cover_features_filename="cover_features.h5",
    stego_features_filename="stego_features.h5",
    train_csv="train.csv",
    test_csv="test.csv",
)

# Training is faster when arrays are C-contiguous
Xc_tr = np.ascontiguousarray(Xc_tr)
Xs_tr = np.ascontiguousarray(Xs_tr)

# The hyper-parameter search is wrapped inside a trainer class
trainer = sw.ensemble_classifier.FldEnsembleTrainer(
    Xc=Xc_tr,
    Xs=Xs_tr,
    seed=12345,
    verbose=1,
)

# Train with hyper-parameter search
trained_ensemble, training_records = trainer.train()

# Concatenate the test features and labels
X_test = np.concatenate((cover_features_test, stego_features_test), axis=0)
y_test = np.concatenate((
    -np.ones(len(cover_features_test)),
    +np.ones(len(stego_features_test))
), axis=0)

# Calculate test accuracy
test_accuracy = trained_ensemble.score(X_test, y_test)

Feature formats

Note that the feature extractors return different formats: 1D arrays, multi-dimensional arrays, or ordered dicts. The reason is that feature descriptors are composed of multiple submodels. Retaining the structure allows the user to select a specific submodel. The following snippets show how to flatten the features to a 1D array.

Ordered dict

# The PHARM feature extraction returns an ordered dict
features_grouped = sw.pharm.extract_from_file("seal1.jpg", implementation=sw.PHARM_REVISITED)

# Flatten dict to a 1D array
features = sw.tools.flatten(features_grouped)

Multi-dimensional array

# The GFR feature extraction returns a 5-dimensional array:
# - Dimension 0: Phase shifts
# - Dimension 1: Scales
# - Dimension 2: Rotations/Orientations
# - Dimension 3: Number of histograms
# - Dimension 4: Co-occurrences
features = sw.gfr.extract("seal1.jpg")

# Simply flatten to a 1D array
features = features.flatten()

Acknowledgements and Disclaimer

Developed by Martin Benes and Benedikt Lorch, University of Innsbruck, 2024.

The implementations of feature extractors and the detector in this package are based on the original Matlab code provided by the Digital Data Embedding Lab at Binghamton University.

We have made our best effort to ensure that our implementations produce identical results as the original Matlab implementations. However, it is the user's responsibility to verify this. For notes on compatibility with previous implementation, see compatibility.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sealwatch-2025.7.tar.gz (40.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sealwatch-2025.7-cp38-abi3-win_amd64.whl (249.7 kB view details)

Uploaded CPython 3.8+Windows x86-64

sealwatch-2025.7-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.0 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

sealwatch-2025.7-cp38-abi3-macosx_11_0_arm64.whl (356.4 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

File details

Details for the file sealwatch-2025.7.tar.gz.

File metadata

  • Download URL: sealwatch-2025.7.tar.gz
  • Upload date:
  • Size: 40.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.20

File hashes

Hashes for sealwatch-2025.7.tar.gz
Algorithm Hash digest
SHA256 a9222b9a6badf64e4e45b1f4517d5caf0b4b0f2ce90a7091238d1b080a41e41c
MD5 d75dd33b5c586e14a241ef13bf5a5561
BLAKE2b-256 a06e13301230e498a1fd8ebedb86712fa28603a6821e8e0680934331c41e20ca

See more details on using hashes here.

File details

Details for the file sealwatch-2025.7-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: sealwatch-2025.7-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 249.7 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.20

File hashes

Hashes for sealwatch-2025.7-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 fc8024b8b3075ad65181fc289c935f8b53d80e57232744c1b29150eeff5f6bac
MD5 00d32e1c2f98093fc121f3cf3057a36a
BLAKE2b-256 c4c6542aa2ddd08f9cd064fc4e31d265e2e29af0b9578e1f3724de0c891b41cd

See more details on using hashes here.

File details

Details for the file sealwatch-2025.7-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sealwatch-2025.7-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 474ba79c731b5fff989c77911de07099a6053bbccfd9fa76d6253afbed1e8b33
MD5 d4daa434695efa2cf0063ddfcbfaf691
BLAKE2b-256 8e55b2dec033b90bca3b6c58b04453439f34bf73ec10562963f4d3ab63793ccb

See more details on using hashes here.

File details

Details for the file sealwatch-2025.7-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sealwatch-2025.7-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bbc987470443b4828a1e111a3d0ac595e40c13489eaed4c5a61ef1f37814d5a
MD5 b3b6b90644bdcd6b28e68b94db434f12
BLAKE2b-256 e8eae80e1c0fe9ae55e6a09d6ad6d8a6efbf0ad966d92b2c64197177ba4335b7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page