필터 지우기
필터 지우기

how we check the key space analysis and key sensitivity analysis in matlab??

조회 수: 3 (최근 30일)
Sultan Mehmood
Sultan Mehmood 2019년 7월 22일
답변: Abdullah Qayyum 2020년 6월 28일
I = imread('camera man.png');
R = I(:)';
x=0.3;
p=0.343;
for n=2:65536;
if x(n-1)>=0 & x(n-1)<=p
x(n)=x(n-1)/p;
else
x(n)=(1-x(n-1))/(1-p);
end
end
A=sort(x);
[A,T]=sort(x);
Y=R(T);
C=reshape(Y,[256,256]);
V=imshow(C);
D=C(:)';
[D,U]=sort(T);
M=Y(U);
F=reshape(M,[256,256]);
imshow(F)
i want to check the key space nd key sensitivity . plz help

답변 (1개)

Abdullah Qayyum
Abdullah Qayyum 2020년 6월 28일
Have you find the answer? Please also let me know

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by