フィルターのクリア

Creating Function that Divides of Mean Pixel value fo two images

1 回表示 (過去 30 日間)
shiffraw dagnechaw
shiffraw dagnechaw 2018 年 7 月 27 日
再開済み: Walter Roberson 2018 年 12 月 22 日
I'm trying to create a function that divides the mean pixel values of two images. I tried to write a function, but the answer it's giving me is one which is incorrect because when I calculated the individual mean pixel values and divided them I got approx 1/2. Here is my code:
function [Beta] = betacalc(beta1,beta2)
beta1im = imread(beta1);
beta2im = imread(beta2);
beta1mean = mean(beta1im(:));
beta2mean = mean(beta1im(:));
betadivide = beta1mean/beta2mean
end

採用された回答

Image Analyst
Image Analyst 2018 年 7 月 27 日
The code is correct, except for the error that Beta is never assigned by your function.

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by