필터 지우기
필터 지우기

How can i extract the hidden message from 1st, 2nd and 3rd bit plane of cover image and store in another text file?

조회 수: 1 (최근 30일)
fp = fopen('C:\Users\hello\Documents\MATLAB\Full RSA Implement\plaintext.txt','r+');
SecretMsg=fread(fp,256*256*3/8);
fclose(fp);
SM=de2bi(SecretMsg);
SM1=reshape(SM,256*3,length(SM)*8/(256*3));
HS = logical(SM1);
I1 = HS(1:256,1:256);
I2 = HS(257:512,1:256);
I3 = HS(513:768,1:256);
II = logical(I8)*128+logical(I7)*64+logical(I6)*32+logical(I5)*16+logical(I4)*8+logical(I3)*4+logical(I2)*2+logical(I1);
Here i have done to hide a file inside the bit plane of cover image. Then i don't know hoe to retrieve same hidden file in another text file.

답변 (1개)

Image Analyst
Image Analyst 2016년 9월 20일
See attached demo.

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by