views:

186

answers:

3

Hi I'm working on steganography in binary image.but I have a problem in implementation in matlab. I want to konw that, How can I hide a message in a binary image? And, How can I do it in matlab with m-file or simulation?

+1  A: 

Steganography can be done in so many different ways that you will have to define what exactly do you need if you want something specific.

In the mean time here is an example:

Encoding:

  • take an image and make each pixel uses only 23 out of 24 bits for colors (for example set lowest bit to 0 on the value of red color)
  • this will give you W x H bits for your message
  • put your message bit by bit into cleared pixels

Decoding

  • extract only bits from the lowest bit red component in the order they were put in and... that's it.
Unreason
A: 

There was recently a similar question on SO with great answer from @Jacob with code example.

You can also have a look at LSB Based Steganography article on Advanced Matlab website.

yuk
A: 

hi please help me .how write a progeram with algorithm lsb for image steganography for bmp or jif or jpeg

maryam

related questions