フィルターのクリア

Kindly Explain the shuffled procedure and how this code shuffle the pixel values?

2 ビュー (過去 30 日間)
Wajid
Wajid 2022 年 12 月 19 日
回答済み: Image Analyst 2022 年 12 月 19 日
A=[1 2 3 4 ; 5 6 7 8; 9 10 11 12; 13 14 15 16];
disp('Given Matrix is');
disp(double(A));
%/////////////////////////////////////////////////
[m,n]=size(A);
a = 3;
b = 3;
num_iter = 5;
for k=1:num_iter
for i=1:m
for j=1:n
r = mod([round((1-(a*(i^2))+j)),round((b*i))],[m n]);
S(i,j)=A(r(1)+1,r(2)+1);
end
end
A=S;
end
disp('Shuffled matrixx is');
disp(double(S));
%//////////////////////////////////////////
%%Reshuflle Imge
[m,n]=size(S_img);
a = 3;
b = 3;
num_iter = 5;
for k=1:num_iter
for i=1:m
for j=1:n
r1 = mod([round((1-(a*(i^2))+j)),round((b*i))],[m n]);
x1(r1(1)+1,r1(2)+1)=S_img(i,j);
%x(i,j)=x1(r(1)+1,r(2)+1);
end
end
S_img=x1;
end
disp('shuffled matrix is ');
disp(double(x1));

採用された回答

Image Analyst
Image Analyst 2022 年 12 月 19 日
I'm pretty sure that's the algorithm for Arnolds Cat Map:
Attached is my demo.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumeric Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by