Difference between contrast stretching and histogram equalization

后端 未结 6 451
悲&欢浪女
悲&欢浪女 2020-12-23 15:04

I would like to know the difference between contrast stretching and histogram equalization.

I have tried both using OpenCV and observed the results

6条回答
  •  隐瞒了意图╮
    2020-12-23 15:51

    I think that contrast stretching broadens the histogram of the image intensity levels, so the intensity around the range of input may be mapped to the full intensity range.

    Histogram equalization, on the other hand, maps all of the pixels to the full range according to the cumulative distribution function or probability.

提交回复
热议问题