Adjusting image intensity values

半腔热情 提交于 2019-12-10 11:38:16

问题


I came to the imadjust function in MATLAB. It seems that this function enhances the contrast of the image. But, what is the theoretical basis for this function? In other words, if I say that this function as mentioned in the documentation adjusts the image intensity values, what does this exactly mean? What is it doing to the intensity values?

Thanks.


回答1:


The formula for each pixel is likely to be

J = ((((I - low_in) / (high_in - low_in)) ^ gamma) * (high_out - low_out)) + low_out

If you leave off all the parameters, low_in and high_in are automatically selected so that the output contains 1% of its pixels at the highest and lowest values.



来源:https://stackoverflow.com/questions/18490304/adjusting-image-intensity-values

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!