惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
A
About on SuperTechFans
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
月光博客
月光博客
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Jina AI
Jina AI
有赞技术团队
有赞技术团队
博客园_首页

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Perfect Pixel Recovery: Implementing Bayesian Neural Netw...
Anjasfedo · 2026-05-20 · via DEV Community

Imagine hiding a secret message inside an image, transmitting it, and then extracting that exact message without losing a single bit. Now, imagine being able to restore the original cover image to its exact mathematical state, pixel for pixel. 🧩

In this article, I will walk through my implementation of a research-backed architecture that uses Bayesian Neural Networks and Modulo-256 arithmetic to achieve 100% reversible steganography.


📜 Academic Attribution

First and foremost, this work is an implementation and exploration of the research paper:

"Bayesian Neural Networks for Reversible Steganography"
Author: Ching-Chun Chang
Journal: IEEE Access, 2022
DOI: 10.1109/ACCESS.2022.3159911

All architectural foundations for the uncertainty-driven embedding, including the Bayesian Neural Network predictor and the variance-sorted difference expansion, are attributed to the original author.


📌 The Challenge: The Reversibility Problem

Most traditional steganography permanently alters the cover image. Reversible steganography aims to fix this, but it faces a massive enemy: pixel overflow and underflow (clipping).

If a pixel is purely white (255) and you add 1 to hide a secret bit, the image format clips it back to 255. When the receiver tries to read it, the math is broken, the secret bit is corrupted, and the image cannot be restored. 💥


🧬 Why Bayesian Neural Networks?

The core innovation here is uncertainty estimation. Instead of just guessing pixel values, the network outputs two things: the predicted pixel intensity and its own uncertainty (variance).

By predicting which pixels it is highly confident about, the network creates a variance map. We can then hide our secret message exclusively in the areas where the network is most certain. This ensures the visual distortion is kept to an absolute minimum. 🧠


🔄 The Modulo-256 Magic

To completely defeat the clipping problem, this implementation uses Modulo-256 arithmetic. If a pixel at 255 gets a +1 modification, it rolls over to 0 instead of clipping.

Because the receiver uses a checkerboard pattern to share the exact same neural network context, they can calculate the modulo difference and perfectly restore both the secret bit and the original pixel.


🧮 The Mathematical Framework

The system optimizes a custom uncertainty-weighted loss function. Instead of standard mean squared error, the loss penalizes errors based on the model's confidence:

Loss=1N((yy^)2σ2+λlog(σ2)) Loss = \frac{1}{N} \sum \left( \frac{(y - \hat{y})^2}{\sigma^2} + \lambda \log(\sigma^2) \right)

For the embedding process, the residual \epsilon (the difference between the true pixel and the prediction) is modulated with the secret bit m:

ϵ=(2×ϵ)+m(mod256) \epsilon^{\prime} = (2 \times \epsilon) + m \pmod{256}


📊 Experimental Results (The Trial Run)

I trained the Bayesian predictor for 200 epochs on a dataset of standard test images. The payload size was set to approximately 0.3 bits per pixel (bpp).

1. Visual Performance & Reversibility

The system achieved 100% extraction success. Every single bit was recovered, and the images were restored flawlessly. For smooth images like Lena and Sailboat, the PSNR reached above 50 dB, meaning the stego image is visually indistinguishable from the original.

Below are the visual results across different textures, demonstrating the system's ability to maintain imperceptibility (ranked from highest to lowest PSNR):

1. Sailboat

  • MSE: 0.5237
  • PSNR: 50.94 dB

Sailboat

2. Lena

  • MSE: 0.6204
  • PSNR: 50.20 dB

Lena

3. Airplane

  • MSE: 0.7910
  • PSNR: 49.15 dB

Airplane

4. Baboon

  • MSE: 1.7721
  • PSNR: 45.65 dB

Baboon

5. Splash

  • MSE: 1.9156
  • PSNR: 45.31 dB

Splash

6. Peppers

  • MSE: 7.5769
  • PSNR: 39.34 dB

Peppers

2. Training Convergence

The training curve shows the stabilization of the Bayesian loss across the 200 epochs.

Training Convergence

The loss function descends smoothly without exploding gradients, indicating that the model successfully learns to predict pixel values while accurately estimating its uncertainty bounds. 📉


🏁 Conclusion

Reversible steganography is a fascinating intersection of deep learning and cryptography. By combining Bayesian uncertainty with clever modular arithmetic, we can achieve high-capacity hiding with zero data loss. 🛡️

Check out the repository here: Anjasfedo/bayesian_neural_network_reversible_steganography

The repository is structured cleanly in PyTorch, allowing you to train the network on your own datasets and test the limits of reversible embedding. 💻

Have you ever worked with Bayesian Networks for tasks outside of standard classification? Let me know in the comments! 👇