File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
algorithms/ImageProcessing/LSB based Image Steganography Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,15 @@ The decoding/decryption is done using the following steps:
2828 2. Input the length of the encoded message (character count).
2929 3. Retrieve the LSBs of each pixel
3030 4. Form a bit sequence from these LSBs
31- 5. Arrange the bit sequence into a matrix of 8 rows and total_message_bits/8 columns (each column will represent a character of 8 bits, hence 8 rows)
31+ 5. Arrange the bit sequence into a matrix of 8 rows and total_message_bits/8 columns
32+ (each column will represent a character of 8 bits, hence 8 rows)
3233 - Convert the binary value to decimal
3334 - Get the corresponding char from ascii
3435
3536
3637 Finally, display the original message.
3738
3839References:
39- [ Concept, TDS article] ( https://towardsdatascience.com/steganography-hiding-an-image-inside-another-77ca66b2acb1 )
40- [ GFG article on LSB based Image Steganography] ( https://www.geeksforgeeks.org/lsb-based-image-steganography-using-matlab/ )
40+ [ Concept, TDS article] ( https://towardsdatascience.com/steganography-hiding-an-image-inside-another-77ca66b2acb1 ) ,
41+ [ GFG article on LSB based Image Steganography] ( https://www.geeksforgeeks.org/lsb-based-image-steganography-using-matlab/ ) ,
4142[ GFG article on text extraction from image] ( https://www.geeksforgeeks.org/text-extraction-from-image-using-lsb-based-steganography/ )
You can’t perform that action at this time.
0 commit comments