Info

This question is closed. Reopen it to edit or answer.

I have implemented image watermarking, changing the LSB of cover image, I m able to insert bits using bitset, now i have an problem, how to maintain the record of cover image original lsb so that they can be inserted back in it on decryption?

1 view (last 30 days)
a= bitget(cover_image(ii,jj),1)
watermarked_image = bitset(cover_image(ii,jj),1,share1(ii,jj)
when i run it .... i get value of lsb one after another, but assign last result as permanent value of a .... i need to save all the values... so then can be placed back
a(ii,jj) = bitget(cover_image(ii,jj),1) is neither helping...... cover image is an blue panel of RGB image.... i m new to matlab ..... plz plz plz help.... i m stuck badly ...... thnks in advance

Answers (0)

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!