Is PVD steganography be used for hiding only text or can it also be used for hiding color image inside color cover image?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Anushka
am 28 Sep. 2015
Kommentiert: Walter Roberson
am 29 Sep. 2015
Is PVD steganography be used for hiding only text or can it also be used for hiding color image inside color cover image?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 29 Sep. 2015
This is not a MATLAB question, and should have been researched in a different forum. MATLAB Answers is about the MATLAB language and libraries, not about theory or algorithms. You should have done research, not re-opened the question.
The answer to your question is that any set of data that can be represented on a computer is ultimately represented as a sequence of bits. The "text" gets transformed to a sequence of bits and the bits are hidden in steganography. RGB images can be transformed into sequence of bits:
temp = dec2bin(YourRGBImage,8)-'0';
bitvector = reshape(temp.',[],1);
4 Kommentare
Walter Roberson
am 29 Sep. 2015
Anything that can be expressed in finite binary can be hidden, provided the cover image is large enough. The hiding algorithms do not care what the bits mean.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!