필터 지우기
필터 지우기

i hide a text into an image by using lsb algorithm successfully..now i want to retrive the txt from the stegno image by the same algorithm..how can i retrieve the text

조회 수: 2 (최근 30일)
stegenography using lsb algorithm
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2014년 12월 27일
I don't think that you use the same algorithm but one that just reverses the steps in the other. Try working backwards from the other code.

댓글을 달려면 로그인하십시오.

답변 (1개)

Parameswaran Bose
Parameswaran Bose 2014년 12월 27일
Hi, I have done message hiding with image by using java, since I don't have matlab coding knowledge, I will give you the text retrieval from image code in java
int byteCount = 0;
for(int i=0;i<fileBytes.length;i++){
for(int j=0; j<8; j++) {
fileBytes[i] = (byte)((fileBytes[i] << 1) | (colorBytes[byteCount] & 1));
byteCount++;
}
}
rgds Parameswaran Bose

태그

Community Treasure Hunt

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

Start Hunting!

Translated by