Skip to content

Commit fbc12a7

Browse files
authored
Update readme.md
1 parent 523dd5a commit fbc12a7

File tree

1 file changed

+4
-3
lines changed
  • algorithms/ImageProcessing/LSB based Image Steganography

1 file changed

+4
-3
lines changed

algorithms/ImageProcessing/LSB based Image Steganography/readme.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

3839
References:
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/)

0 commit comments

Comments
 (0)