簡體   English   中英

如何修復未定義的函數或變量錯誤?

[英]How to fix the undefined function or variable error?

我正在研究Matlab 17.a程序的圖像處理。 我的工作是關於直方​​圖均衡化。 代碼如下。 但是,當我運行代碼“未定義的函數或變量'cumulavite_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)

來吧,伙計 您在第10行有comulative_hist變量,在第33行使用了cumulavite_hist變量。這在第33行是錯誤的名稱。修復它,程序將起作用。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM