如何根据matlab中的公式确定图像的对比度

时间:2017-03-17 16:27:57

标签: matlab sum

我想在matlab中确定图像的对比度。这是图像对比度的公式:

enter image description here

我能够根据以下代码找到图像的亮度B:

I=imread('autumn.tif')
result=1/prod(size(I))* sum(I(:))

The above code is taken from this question

但是如何根据上述公式确定对比度?请帮我 。

1 个答案:

答案 0 :(得分:1)

我得到了答案。 Beaker helps me a lot for this answer.。这是代码:

gacutil.exe -i

希望这可能有助于某人。