Info
この質問は閉じられています。 編集または回答するには再度開いてください。
plz,explain the code.
1 回表示 (過去 30 日間)
古いコメントを表示
function [secret_img] = lsbstego(secret_img, text)
%% Data Hiding
secret_img=double(secret_img);
val = [double(text) 0]; %Coverting secret text to ASCII representation
[~, siz2] = size(secret_img);
i = 1; j = 1;
for y = 1:length(val)
data = val(y); %data is the character in the secret text to be hidden
bit = 128; %Counter variable
while bit > 0 %Clearing the LSB of a pixel
secret_img(i, j) = floor(secret_img(i, j)/2);
secret_img(i, j) = secret_img(i, j)*2;
if bitand(data, bit) > 0 %Setting the LSB of pixel to the information bit
secret_img(i, j) = secret_img(i,j)+1;
end
j = j+1;
if j > siz2
i = i+1;
j = 1;
end
bit = floor(bit/2);
end
end
0 件のコメント
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!