Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harveyslash/deep-steganography
Hiding Images within other images using Deep Learning
https://github.com/harveyslash/deep-steganography
autoencoders convolutional-neural-networks deep-learning deep-neural-networks nips-2017 tensorflow tensorflow-experiments
Last synced: about 1 month ago
JSON representation
Hiding Images within other images using Deep Learning
- Host: GitHub
- URL: https://github.com/harveyslash/deep-steganography
- Owner: harveyslash
- License: mit
- Created: 2018-01-13T02:43:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T12:52:14.000Z (over 6 years ago)
- Last Synced: 2024-09-23T08:02:31.114Z (3 months ago)
- Topics: autoencoders, convolutional-neural-networks, deep-learning, deep-neural-networks, nips-2017, tensorflow, tensorflow-experiments
- Language: Jupyter Notebook
- Homepage:
- Size: 1.82 MB
- Stars: 198
- Watchers: 9
- Forks: 46
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deep-Steganography
Tensorflow Implementation of [Hiding Images in Plain Sight: Deep Steganography](https://papers.nips.cc/paper/6802-hiding-images-in-plain-sight-deep-steganography) (unofficial)
[Steganography](https://en.wikipedia.org/wiki/Steganography) is the science of Hiding a message in another message. In this case, a Picture is hidden inside another picture using Deep Learning.
Blog Post on it can be found [here](https://buzzrobot.com/hiding-images-using-ai-deep-steganography-b7726bd58b06)
## Dependencies Installation
The dependencies can be installed by using
```
pip install -r requirements.txt
```
This will install the tensorflow CPU version by default.
If you would like to use your GPU , you can do
```
pip install --force-reinstall tensorflow-gpu
```
This basically reinstalls the gpu version of tensorflow for your system.## Framework
The Framework takes in Two images. One is the secret image(extreme right) and another is the cover image(extreme left).The goal is to 'hide' the secret image in the cover image such that only the cover image is visible. This is the covered image(Center Left)
Then , this hidden image can be passed to a Revealing network, which can get the hidden image back(Center Right).
![Current System State](_images/current_state.png)
As you can see, it is visually very hard to realise that the covered image is an image that has been tampered with. Yet the Reveal network can get back almost all of the important parts of the image.### Architecture
![network_design](_images/network_diagram.png)
Prep Net, Hide Net , and Reveal net have the same convolutional block structure. Therefore, in the image , only the reveal network is shown, and prep/hide networks are collapsed (to make the image fit).### Loss Curves
Two networks were trained with different beta values (0.25 and .75).Both had a batch size of 8. The loss curves are shown for them:
Beta = .25
![beta .25](_images/loss_beta_0.25.png)Beta = .75
![beta .75](_images/loss_beta_.75.png)## Demo:
In order to test the working of the networks , we have written a browser inplementation using Keras JS.
You can find it here:https://harveyslash.github.io/Deep-Steg-JS/
Due to the extremely high computational resources that it requires, it takes about 3 minutes to setup.