DEV Community

Discussion on: Let's Hide a Secret Message in an Image with Python and OpenCV

Collapse
 
codess_aus profile image
Michelle Mei-Ling Sandford

//decode should be this, not as shown above as there is no decode attribute defined:

import stego
encoded_image = "EncodedImage.png"
stego.decode_image(encoded_image)


Collapse
 
erikwhiting88 profile image
Erik

oh my gosh! I can't believe I missed that. Thanks for catching it and leaving a comment, I've fixed it in the article.