How to remove blurriness from an image using opencv (python/c++)

18,211

Solution 1

You can try sharpening the image using cv2.filter2D() and a generic sharpening kernel

Here are other sharpening kernels you can experiment with

import cv2
import numpy as np

image = cv2.imread('1.jpg')
sharpen_kernel = np.array([[-1,-1,-1], [-1,9,-1], [-1,-1,-1]])
sharpen = cv2.filter2D(image, -1, sharpen_kernel)

cv2.imshow('sharpen', sharpen)
cv2.waitKey()

Solution 2

As suggested by @nathancy you can try with morhological based operations, this works in all the cases but it requires filter dimension tuning according to image shape, noise level and it also leads to drop in image quality.

Recently, Generative Adversarial Networks (GAN) has also got attention for regenrating the images and seems to be promising in image quality enhancement.

This article(https://medium.com/machine-learning-world/deblur-photos-using-generic-pix2pix-6f8774f9701e) has described a GAN based (based on pixtopix model) solution for image deblurring, this may work for your case too.

Share:
18,211
S Andrew
Author by

S Andrew

I am electronics fresher. I am learning things so soon I'll start answering questions on SE and help everyone.

Updated on June 09, 2022

Comments

  • S Andrew
    S Andrew almost 2 years

    I am using opencv to detect person in live video feed. I need to save the image of the person detected. But here the person is not standing and is keeps moving due to which when I am about to save the image, it is saved in very blurry format, just like below image:

    As you can see the image is not very clear and has a lot of blurriness into it. Face is also not clear. Is there anyway we can remove the blurriness from image. Thanks