Histogram blurring in Image Processing

余生长醉 提交于 2019-12-13 06:06:40

问题


I have done image blurring using Gaussian Blur in opencv (smoothing). I came across in search in Google about histogram blurring. Now my question here is, do I apply blurring to the histogram or to the image and than reconstruct the histogram.

What I feel is that I apply to the image and than make the histogram because applying blurring to the histogram does not change any parameters and context about the image. Well I am not sure that is my reason but it will be really grateful if I can get some advice on this.


回答1:


There is actually nothing called Histogram blurring. What you might be referring to is Histogram Equalization or Adaptive Histogram Equalization. There are many other related techniques if you read up on various papers referenced in the links.

The basic idea is - you apply a 1D transformation on the histogram and then transfer that histogram back onto the original image; thereby applying all changes on the contrast onto the original image.

Hope this helps.



来源:https://stackoverflow.com/questions/19533508/histogram-blurring-in-image-processing

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