Steganography is the practice of hiding a message (that is, the secret) within another medium, such as a file, text, image, or video (that is, the cover). When the secret is embedded into the cover, the result is called the container. In this recipe, we will use deep neural networks to create the hiding and revealing processes. Unlike common steganographic methods, which encode the secret in the LSB of the cover, deep learning distributes the secret across all bits.
Deep steganography
Getting ready
In this recipe, you will need access to a GPU.
How to do it…
- Clone...