How to use code of chi square test to check histogram analyis

조회 수: 6 (최근 30일)
Parveiz Lone
Parveiz Lone 2020년 5월 12일
답변: Parveiz Lone 2021년 11월 25일
How to use code of chi square test to check histogram analyis

채택된 답변

Parveiz Lone
Parveiz Lone 2021년 11월 25일
%% chi square test for image data
function [X_R X_G X_B]=chisquare(C)
B1=uint8(C); % C=cipher image
v=0;
a1=imhist(B1(:,:,1));
a2=imhist(B1(:,:,2));
a3=imhist(B1(:,:,3));
for i=1:256
z1=((a1(i)-256).^2)/256;
v=v+z1;
end
z2=((a2-256).^2)/256;
z3=((a3-256).^2)/256;
X_R=v;
X_G=sum(z2);
X_B=sum(z3);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Hypothesis Tests에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by