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.4.1.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.4.1-cp38-abi3-win_amd64.whl (248.0 kB view details)

Uploaded CPython 3.8+Windows x86-64

sealwatch-2025.4.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.5 kB view details)

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

sealwatch-2025.4.1-cp38-abi3-macosx_11_0_arm64.whl (348.2 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: sealwatch-2025.4.1.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.4.1.tar.gz
Algorithm Hash digest
SHA256 08e1197df10414c598f65cd9e3791c769c77dc5ae34a95c126802cedbcc47e3e
MD5 a90bd10ac99c8ca484a7bdc3071e5010
BLAKE2b-256 0f223e56fa0acb09cebaee62a450e69348c0abe249ca033f0b28c862e006be15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sealwatch-2025.4.1-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 248.0 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.4.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a9112e53a6f14486245123edbd257255c2ffb07a0b208752f911f5d89a92f48b
MD5 447666cadd48a42f6715532830133836
BLAKE2b-256 af435714a37e0261ebb66fe8de2436b86bf5d622aabccd7363f3e5c682314480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sealwatch-2025.4.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1048915465e249d8771f5742b71eb450cc361670b35286cee772bd922a2e671
MD5 ca222fd7a4e94732928db903938eb2f7
BLAKE2b-256 a20d85d1f51a8682710435ba632d5c248af7d72ccf5fd7cd923e5b26c653c178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sealwatch-2025.4.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f168aa61f30e29b4c871a616e34a16d49aee218c72968fcd1c8bff02f2bb25e
MD5 de645b2452619e8cd9f7ff6effb01bb9
BLAKE2b-256 e2fcf777d9607984c6177729d2d521da4222c34642814bdbfd7dbdd850034d98

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