当前位置:   article > 正文

OpenCV实现失焦模糊图像恢复_opencv模糊图像变清晰

opencv模糊图像变清晰

基本原理

图像退化模型在频率域的表示如下:

其中

S表示退化(模糊)图像频谱

H表示角点扩散功能(PSF)的频谱响应

U 表示原真实图像的频谱

N表示叠加的频谱噪声

圆形的PSF因为只有一个半径参数R,是一个非常好的失焦畸变近似,所以算法采用圆形的PSF。

模糊恢复,模板恢复本质是获得一个对原图的近似估算图像,在频率域可以表示如下:

其中SNR表示信噪比,因此可以基于维纳滤波恢复离焦图像,实现图像反模糊。这个过程最终重要的两个参数,分别是半径R与信噪比SNR,在反模糊图像时候,要先尝试调整R,然后再尝试调整SNR。

代码实现

计算PSF的代码如下:

  1. void calcPSF(Mat& outputImg, Size filterSize, int R)
  2. {
  3. Mat h(filterSize, CV_32F, Scalar(0));
  4. Point point(filterSize.width / 2, filterSize.height / 2);
  5. circle(h, point, R, 255, -1, 8);
  6. Scalar summa = sum(h);
  7. outputImg = h / summa[0];
  8. }

生成维纳滤波的代码如下:

  1. void calcWnrFilter(const Mat& input_h_PSF, Mat& output_G, double nsr)
  2. {
  3. Mat h_PSF_shifted;
  4. fftshift(input_h_PSF, h_PSF_shifted);
  5. Mat planes[2] = { Mat_<float>(h_PSF_shifted.clone()), Mat::zeros(h_PSF_shifted.size(), CV_32F) };
  6. Mat complexI;
  7. merge(planes, 2, complexI);
  8. dft(complexI, complexI);
  9. split(complexI, planes);
  10. Mat denom;
  11. pow(abs(planes[0]), 2, denom);
  12. denom += nsr;
  13. divide(planes[0], denom, output_G);
  14. }

实现反模糊的代码如下:

  1. void filter2DFreq(const Mat& inputImg, Mat& outputImg, const Mat& H)
  2. {
  3. Mat planes[2] = { Mat_<float>(inputImg.clone()), Mat::zeros(inputImg.size(), CV_32F) };
  4. Mat complexI;
  5. merge(planes, 2, complexI);
  6. dft(complexI, complexI, DFT_SCALE);
  7. Mat planesH[2] = { Mat_<float>(H.clone()), Mat::zeros(H.size(), CV_32F) };
  8. Mat complexH;
  9. merge(planesH, 2, complexH);
  10. Mat complexIH;
  11. mulSpectrums(complexI, complexH, complexIH, 0);
  12. idft(complexIH, complexIH);
  13. split(complexIH, planes);
  14. outputImg = planes[0];
  15. }

调用步骤:

  1. void adjust_filter(int, void*) {
  2. Mat imgOut;
  3. // 偶数处理,神级操作
  4. Rect roi = Rect(0, 0, src.cols & -2, src.rows & -2);
  5. printf("roi.x=%d, y=%d, w=%d, h=%d", roi.x, roi.y, roi.width, roi.height);
  6. // 生成PSF与维纳滤波器
  7. Mat Hw, h;
  8. calcPSF(h, roi.size(), adjust_r);
  9. calcWnrFilter(h, Hw, 1.0 / double(snr));
  10. // 反模糊
  11. filter2DFreq(src(roi), imgOut, Hw);
  12. // 归一化显示
  13. imgOut.convertTo(imgOut, CV_8U);
  14. normalize(imgOut, imgOut, 0, 255, NORM_MINMAX);
  15. imwrite("D:/deblur_result.jpg", imgOut);
  16. imshow("deblur_result", imgOut);
  17. }

图像傅里叶变换

  1. void fftshift(const Mat& inputImg, Mat& outputImg)
  2. {
  3. outputImg = inputImg.clone();
  4. int cx = outputImg.cols / 2;
  5. int cy = outputImg.rows / 2;
  6. Mat q0(outputImg, Rect(0, 0, cx, cy));
  7. Mat q1(outputImg, Rect(cx, 0, cx, cy));
  8. Mat q2(outputImg, Rect(0, cy, cx, cy));
  9. Mat q3(outputImg, Rect(cx, cy, cx, cy));
  10. Mat tmp;
  11. q0.copyTo(tmp);
  12. q3.copyTo(q0);
  13. tmp.copyTo(q3);
  14. q1.copyTo(tmp);
  15. q2.copyTo(q1);
  16. tmp.copyTo(q2);
  17. }

运行效果

原图: 肉眼无法辨识

R=10, SNR=40时候的运行效果:基本肉眼可以辨识!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/975343
推荐阅读
相关标签
  

闽ICP备14008679号