Image sharpness metric

前端 未结 4 1683
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-30 09:52

Is there some robust metric of image sharpness or bluriness? I have various set of images with different parameters of saturation and captured from different optical systems

相关标签:
4条回答
  • 2020-12-30 09:56

    Autofocus is an interesting problem on its own, and so evaluating sharpness across arbitrary images is another level of complexity.

    On sharpness evaluation, I suggest this paper from Cornell. Their conclusion was that the variance metric provided the best evaluation of a given image. And it doesn't hurt that it's really easy to calculate!

    For creating a consistent metric across different images, you'll need a way to normalize. The metric might be in units of variance per pixel. You could take advantage of the fact that lack of focus provides an upper bound on variance, and so look for clustering at a maximal rate of local variance.

    0 讨论(0)
  • 2020-12-30 09:58

    You can calculate the accutance of the image by calculating the mean of the Gradient Filter.

    Reference this StackOverflow answer to a similar question.

    0 讨论(0)
  • 2020-12-30 10:01

    You need a no-reference sharpness metric, such as:

    • Cumulative probability of blur detection (CPBD) https://ivulab.asu.edu/software/quality/cpbd
    • S3 http://vision.eng.shizuoka.ac.jp/pubs/pdfs/S3_preprint.pdf
    • Just noticeable blur (JNB) https://ivulab.asu.edu/software/quality/jnbm
    • LPC-SI https://ece.uwaterloo.ca/~z70wang/publications/TIP_LPCSharpness.pdf
    0 讨论(0)
  • 2020-12-30 10:17

    Here's a short paper describing a method for detecting blurredness using a Haar Wavelet Transform

    The other answers to this PAQ may also be helpful.

    0 讨论(0)
提交回复
热议问题