필터 지우기
필터 지우기

image scrambling using arnold scramble

조회 수: 2 (최근 30일)
kush
kush 2012년 4월 2일
댓글: Manpreet 2015년 5월 1일
does anyone knows about arnolg's image scrambling ? i am scrambling an image using arnold scramble as :
wname='_copyright.bmp';
I=imread(wname);
[rown,coln]=size(I);
ct=input('Enter Key');
for inc=1:ct
for row=1:rown
for col=1:coln
nrowp = row;
ncolp=col;
for ite=1:inc
newcord =[1 1;1 2]*[nrowp ncolp]';
nrowp=newcord(1);
ncolp=newcord(2);
end
arnold(row,col)=I((mod(nrowp,rown)+1),(mod(ncolp,coln)+1));
end
end
end
can anyone plz tell how to get back original image by applying reverse arnold scramble ???
  댓글 수: 1
Manpreet
Manpreet 2015년 5월 1일
Please explain the code for the key.

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

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by