How to Convert image pixes into Binary Bits in MATLAB?

1 Ansicht (letzte 30 Tage)
Wubie Engdew
Wubie Engdew am 19 Dez. 2019
Beantwortet: Image Analyst am 19 Dez. 2019
imgr=imgrgb(:,:,1);
imgg=imgrgb(:,:,2);
imgb=imgrgb(:,:,3);
imgrb=hexToBinaryVector(dec2hex(imgr(:,1:ceil(4*L/row))),8);
imggb=hexToBinaryVector(dec2hex(imgg(:,1:ceil(4*L/row))),8);
imgbb=hexToBinaryVector(dec2hex(imgb(:,1:ceil(4*L/row))),8);
This code does not work???
How I can convert into binary bits and embed with cipher text??

Antworten (1)

Image Analyst
Image Analyst am 19 Dez. 2019
See my attached demo to hide/encode text into an image.

Kategorien

Mehr zu Encryption / Cryptography finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by