2017-10-28 17 views
0

私はMatlab 17.aプログラムの画像処理に取り組んでいます。私の仕事はヒストグラムの均等化です。コードは以下の通りです。しかし、私がコードを実行するとき "未定義の関数または変数 'c​​umulavite_hist'。"私はエラーが発生します。この問題を解決するにはどうすればよいですか?ご協力ありがとうございました。定義されていない関数または変数のエラーを修正するにはどうすればよいですか?

出力は元の画像の横にあるヒストグラムになります。下の写真とヒストグラムが変化します。ご協力ありがとうございました。

>> img= imread ('C:\Users\emre.guzel\Desktop\homeworkimage.png'); 
if (size(img,3)>1) 
    img=rgb2gray(img); 
end 


max_r = size (img,1); 
max_c =size (img,2); 
histogram =zeros ([1 256]); 
cumulative_hist = zeros ([1 256]); 

for r=1:max_r 
    for c=1:max_c 
     for count =1:256 
      if(img(r,c) == count-1) 
       histogram (count) =histogram (count)+ 1; 
       break ; 
      end  
     end 
    end 
end 

%find cumulative histogram 
current_value = 0; 
for count=1:256 
    current_value = current_value + histogram (count); 
    cumulative_hist(count) = current_value; 
end 
%find h =(cdf-cdf(min)/(MN - cdf (min))) * 255 
%this is the normalized cumulative histogram normalize dediğine bakma sen. 
%histogram equalization formulu bu . aşağıda da bunu uygulamış. 
normalized_hist = zeros ([1 256]); 
cdf_min = min (cumulavite_hist) ; 
for count = 1:256 
    normalized_hist(count) = cumulative_hist(count) - cdf_min; 
    normalized_hist(count) = normalized_hist (count)/((max_r*max_c)- cdf_min); 
    normalized_hist(count) = round (normalized_hist (count) * 255); 
end 
%replace the values with given equalized values 
equalized_image = zeros ([max_r max_c]); 
for r =1:max_r 
    for c=1:max_c 

     for count = 1:256 
      if(img(r,c) ==(count-1)) 
       % 
       % 
       equlized_img(r,c) = normalized_hist(count); 

       break; 
      end 
     end 
    end 
end 
subplot(2,2,1) 
imshow(img); 
title('Orijinal Image'); 
subplot (2,2,2); 
imhist(img) ; 
title ('Hist of Orijinal Image'); 
subplot(2,2,3) ; 
imhist (uint8(equalized_img)); 
title('Histogram Equalized Image'); 
H = uint (equalized_img); 
subplot(2,2,4) ; 
imhist(H) ; 
title ('Histogram of Histogram Equalized Image'); 

a = histeq(img); 
figure 
imshow(a) 

答えて

0

是非。 comulative_histが10行目にあり、cumulavite_histという変数が33行目に使用されています.33行目に間違った名前があります。修正してプログラムが機能します。

関連する問題