Skip to main content

Super-resolution via a fast deconvolution with kernel estimation

Abstract

Image super-resolution has wide applications in biomedical imaging, computer vision, image recognition, etc. In this paper, we present a fast single-image super-resolution method based on deconvolution strategy. The deconvolution process is implemented via a fast total variation deconvolution (FTVd) method that runs very fast. In particular, due to the inaccuracy of kernel, we utilize an iterative strategy to correct the kernel. The experimental results show that the proposed method can improve image resolution effectively and pick up more image structures. In addition, the speed of the proposed method is fast.

1 Introduction

The process of estimating a high-resolution (HR) image from one or multiple low-resolution (LR) images is often referred to as image super-resolution. According to the number of low-resolution images, image super-resolution can be divided into two categories: one is single-image super-resolution, and the other is multiple-image super-resolution. Based on image sequence, multiple-image super-resolution uses overlapping information between multiple low-resolution images to estimate details of the high-resolution image [13]. Due to multiple-image super-resolution needs more than one input image, it cannot deal with the situation when only one image is inputted. In this paper, we mainly focus on single-image super-resolution.

Interpolation-based methods are one of classical image super-resolution methods. To determine pixel values of each position in the high-resolution image, interpolation-based methods need to construct a rational interpolation function. The conventional interpolation-based methods contain bicubic interpolation method, cubic interpolation method [4], cubic spline interpolation method, nearest-neighbor interpolation method, etc. These methods usually run very fast but always produce blurring or jagged artifacts. Recently, many contributions in terms of interpolation-based methods have been proposed [511]. In [6], Zhang et al. present an edge-guided interpolation algorithm through directional filtering and data fusion. This method can preserve sharp edges. In [9], Wang et al. propose a fast image upsampling method within a two-scale framework. They use interpolation method to recover the low-frequency image and reconstruction technique to recover the local high-frequency structures.

Reconstruction-based methods are another class of image super-resolution approaches. Through studying the low-resolution image generating process, reconstruction-based methods use a certain model to depict the mapping relationship between the high-resolution image and the low-resolution image. There are three main types of reconstruction-based methods: frequency domain techniques, spatial domain techniques, and other techniques. Frequency domain techniques [1214] solve the problem in frequency domain, and the observation model is based on displacement characteristics of Fourier transform. Spatial domain techniques, such as non-uniform interpolation within samples method [15], convex set projection method [16], statistical recovery method (maximum a posteriori and maximum likelihood estimation) [2, 17, 18], solve the problem in spatial domain. In addition, there are some other reconstruction-based methods [1924]. In [22], Shan et al. propose an efficient upsampling method which lies in a feedback-control framework. This method runs very fast and can preserve the essential structural information.

Learning-based methods are the third category of image super-resolution methods. Learning-based methods [2532] need to train two dictionaries for low-resolution and high-resolution images or patches. When given a low-resolution image, learning-based methods can get a high-resolution image through using the learnt mapping relationship between the two dictionaries. Although these methods obtain good visual results, they rely on the two training dictionaries and cannot change the magnification factor arbitrarily.

In this paper, we propose a new single image super-resolution method based on deconvolution strategy. According to Efrat et al. [33], an accurate kernel is more important than a sophisticated prior for image super-resolution. Thus, we take into account the error of blur kernel in our method. We develop an iterative strategy to adjust the blur kernel and then estimate the final high-resolution image via a reconstruction method. The proposed method is based on the framework of [22]. However, it has two main contributions. First, the proposed method can get faster speed than [22], since we employ a fast total variation deconvolution (FTVd) method in our work. Second, the proposed method estimates the deconvolution kernel iteratively to get better visual and quantitative results than [22].

The rest of this paper is organized as follows. Section 2 introduces image super-resolution problem, reviews FTVd method and a fast image upsampling method. In Section 3, we detail the proposed model and algorithm. Numerical results are shown in Section 4. Finally, we draw some conclusions in Section 5.

2 Problem description and related works

2.1 Image super-resolution problem

Let H be a high-resolution image and let f be the camera’s point spread function (PSF) which is approximated by a Gaussian filter. According to [1], the low-resolution image can be modeled as

$$ L = \left(\ f\otimes H\right)\downarrow^{d}, $$
(1)

where d is a downsampling operator with factor d. This equation can be broken down into two steps,

$$ B= f\otimes H, L = B\downarrow^{d}, $$
(2)

where B is a linearly filtered high-resolution image. Image super-resolution is to recover the high-resolution image H from an input low-resolution image L.

2.2 Image super-resolution problem

FTVd method is a popular way to solve the problem of image restoration [34]. Image restoration is a process of recovering images from blurring and noise observation. This process can be modeled as

$$ g = Au+n, $$
(3)

where g represents the observed image, A represents a convolution matrix, u is an original image, and n is random noise.

A degraded image u can be recovered from the following simple model:

$$ \mathop {\min }\limits_{u}\sum_{i}\|D_{i}u\|+\frac{\mu}{2}\|Au-g\|^{2}_{2}, $$
(4)

where D i u is the discrete gradient of u at pixel i, \(\sum _{i}\|D_{i}u\|\) is the discrete total variation (TV) of u, and μ is a regularization parameter.

Actually, similar cases with the above problems have been studied by many works [3439]. In particular, FTVd method [34] is one of effective methods for solving Eq. (4). In [34], Wang et al. utilize an auxiliary variable w i to substitute D i u to generate the following problem:

$$ \mathop {\min }\limits_{\mathbf{w},u}\sum_{i}\|\mathbf{w}_{i}\|_{2}+\frac{\beta}{2}\sum_{i}\|\mathbf{w}_{i}-D_{i}u\|^{2}_{2}+\frac{\mu}{2}\|Au-g\|^{2}_{2}, $$
(5)

where β is a penalty parameter.

This model is a half-quadratic model, which can be applied to total variation discretization with anisotropic or isotropic form. In [34], Wang et al. use a fast total variation deconvolution (FTVd) method to solve Eq. (5) (see Algorithm 1). This algorithm can be applied to image deblurring with different blurring kernels and different noise.

2.3 Fast image upsampling method

In [22], Shan et al. introduce a new single image super-resolution method. This method can enhance image resolution automatically and preserve essential structural information. A key feature of this method is a feedback-control framework that contains three parts: deconvolution, reconvolution, and pixel substitution.

In the deconvolution process, Shan et al. [22] take a non-blind deconvolution method. The non-blind deconvolution method is to solve the following energy function:

$$ E(H) \varpropto \| f\otimes H-B\|_{2}^{2}+\lambda(\|\Phi(\partial_{x}H)\|_{1}+\|\Phi(\partial_{y}H)\|_{1}), $$
(9)

where x H and y H are the values of the x and y direction gradients, respectively. λ is a regularization parameter. After the deconvolution process, the output image is refiltered in the reconvolution stage. In the process of pixel substitution, pixels of the low-resolution image are utilized to replace the pixels at the corresponding locations of the high-resolution image. There are two advantages for using pixel substitution. First, it can utilize the accurate low-resolution image pixels. Second, it can approximate the image, output from the reconvolution process, as a Gaussian-filtered image with a feedback-control loop. This method does not depend on the quality and quantity of the selected examples. Besides, the running time of this method is very fast.

3 The proposed method

3.1 The proposed framework

In this section, we give the proposed method which is consisted of four parts: deconvolution, estimating blur kernel, reconvolution, and pixel substitution.

Figure 1 shows the diagram of our framework. In our scheme, the input is a low-resolution image L. We first transform the low-resolution image from RGB color space to YUV color space. Next, we upsample the low-resolution image to an ideal size by bicubic interpolation method and only conduct at Y space. We take an iterative strategy to achieve the image upsampling process (see Algorithm 2). Our strategy contains four parts: deconvolution, estimating blur kernel, reconvolution, and pixel substitution. We take deconvolution process to eliminate the effect of the linear filtering. For instance, there are some visual artifacts around the image “wheel” after bicubic interpolation in the Y space (see Fig. 1). Besides, because the accurate blur kernel can not be known exactly, the further estimated high-resolution image will become more inaccurate. Thus, we take account of the error of blur kernel. Furthermore, the same as [22], we take reconvolution and pixel substitution process to control the image upsampling. By applying our strategy iteratively at the initial high-resolution image B (0), we can obtained the estimated high-resolution image at Y space. The final estimated high-resolution image H is acquired by transforming the high-resolution image from YUV color space to RGB color space. We will show more details about the four steps of the proposed method (deconvolution, estimating blur kernel, reconvolution, and pixel substitution) as follows.

Fig. 1
figure 1

The flow chart of our framework. The low-resolution image L is transformed from RGB color space to YUV color space. The proposed method includes four steps (deconvolution, estimating blur kernel, reconvolution, and pixel substitution) and is only applied to Y channel. The final result H is obtained via transforming the high-resolution image from YUV color space to RGB color space

3.1.1 Deconvolution

Let B (i) as a high-resolution that is gotten at iteration i,i≥0, and B (0) is obtained by bicubic interpolation method. In particular, B (0) is obtained by bicubic interpolation method. The deconvolution process, estimating the high-resolution image H (i), can be regarded as solving the first part of Eq. (2). This problem can be modeled as fHB, where is a convolution operator. Let W be a convolution matrix, then fHB can be regarded as a multiplication of W and H. Note that the problem of minimizing \(\|f\otimes H- B\|_{2}^{2}\) is hard to solve because the inverse of W does not always exist and sometimes W can be influenced by noise. In particular, taking the high-resolution image B as a blurred image, the deconvolution process can be considered as an image restoration problem. In this paper, we take FTVd method [34] in the deconvolution process, since FTVd method [34] is an effective way to deal with image restoration problem. The main steps of FTVd method are shown in Section 2.1.

3.1.2 Estimating blur kernel

Because the blur kernel is not known exactly in the image formation process, it may have some errors: \(f=\tilde {f}+e\), where f is the accurate blur kernel and \(\tilde {f}\) is the inaccurate blur kernel containing an error e. In order to get a reasonable high-resolution image, we need to consider the error of blur kernel.

We use the method similar to that described in [40] to estimate the blur kernel. Considering a connected bounded domain ΩR 2 with compact Lipschitz boundary, we take the initial high-resolution image B (0), acquired by bicubic interpolation, as a blurred image and the intermediate high-resolution image at i times H (i) as a real image. \(\tilde {f}\) be the blur kernel and e be the error of blur kernel. We study the following objective function to get the error of blur kernel e:

$$ \mathop {\min }\limits_{e} \int_{\Omega}\left[\left(\ \tilde{f}+e\right) \otimes H-B\right]^{2}dx+\alpha\int_{\Omega}e^{2}dx, $$
(10)

where α is a positive regularization parameter. This problem can be solved by fast Fourier transform:

$$ e=\mathcal{F}^{-1}\left(\frac{\mathcal{F}^{-1}(H)\mathcal{F}(B-\tilde{f} \otimes H)}{\mathcal{F}^{-1}(H)\mathcal{F}(H)+\alpha}\right), $$
(11)

where \(\mathcal {F}\) and \(\mathcal {F}^{-1}\) are the Fourier transform and the inverse Fourier transform, respectively. When we compute the error e, then the blur kernel can be estimated by \(f=\tilde {f}+e\).

3.1.3 Reconvolution

Taking account of reconvoluting the output image H (i) with the blur kernel \(\tilde {f}\), the result should be close to B (i−1), where i≥1. If not, there must be some incorrect pixel values in B. So we need to modify the high-resolution image using the low-resolution image information, which leads to pixel substitution in the next step. In particular, in each reconvolution step, we choose the initial blur kernel \(\tilde {f}^{(0)}\) to reconvolute the high-resolution image. If we choose the updated blur kernel in the reconvolution process, the high-resolution image cannot be well estimated due to the change of blur kernel.

In the pixel decimation process, a low-resolution image is acquired by subsampling the high-resolution image with a downsampling factor d. In addition, the subsampling process only keep one pixel in the high-resolution image. Thus, the corresponding pixels in the high-resolution image can be substituted for pixels in the low-resolution image. In this paper, we take the pixel substitution strategy the same as [22] (see Fig. 2). If we upscale the low-resolution image for d times, we use the pixel (i,j) in the low-resolution image L to replace the pixel (d×i+1,d×j+1) in the corresponding high-resolution image Reblur.

Fig. 2
figure 2

The pixel substitution process

Then, we can use the pixel-replaced image to conduct the next iteration. After several iterations, the estimated high-resolution image H can be obtained. Our algorithm is given in Algorithm 2.

3.2 The difference between [22] and the proposed method

In [22], Shan et al. introduce a fast image/video upsampling method that involves a feedback-control framework. In particular, the proposed method has the similar feedback-control framework with the work in [22] (see Fig. 1). However, there are two main differences comparing with [22].

First, there are two different methods between [22] and the proposed method in the deconvolution process. Shan et al. [22] take account of a density distribution prior. However, the proposed method utilizes FTVd method in the deconvolution process. Since the main step of FTVd method is fast Fourier transforms (FFTs) for each iteration, we can control the iterative number to get the faster speed and more accurate results than the decovolution method in [22].

Second, due to the inaccuracy of blur kernel in the deconvolution process, we employ a strategy of iterative kernel estimation to get more accurate kernel, aiming to make the resulted high-resolution image better. In contrast, Shan et al. [22] only utilize a fixed Gaussian kernel. However, the fixed kernel cannot get better results obviously.

4 Numerical experiments

In this section, we test the proposed method on two kinds of images. One is the low-resolution images without ground truth, and the other is the low-resolution images acquired by downsampling the ground truth images. All experiments are conducted in MATLAB(R2010a) on a laptop of 3.47 GB RAM and Intel(R) Core(TM) i3-2130M CPU: @3.40 GHz.

We make comparisons between the proposed method and some state-of-the-art image super-resolution methods, including bicubic interpolation, a fast upsampling method (“08’TOG” [22] 1), a two-scale method (“14’TIP” [9] 2) and two state-of-the-art interpolation methods (“11’IPOL” [7] 3 and “11’SIAM” [8] 4).

For grayscale image, we apply the proposed algorithm directly. For colored image, we first transform the low-resolution image to YUV color space and then only conduct our algorithm on the Y channel. Images on the U and V channels are upsampled by bicubic method. After acquiring final upsampling image, we transform them from YUV space to RGB space for visual comparisons.

Parameter selection: There are four parameters in our algorithm: the size and the deviation of blur kernel, the regularization parameter α, and the iteration number τ. In fact, it is really difficult to choose appropriate parameters for many algorithms. Empirical adjustment is one of favorite ways for determining parameters. Thus, we select parameters empirically in our experiments. For the size and the deviation of blur kernel, the regularization parameter α, we fix them according to different kinds of test images and different values of the upsampling factor (see details at Table 1). In particular, we use the Gaussian kernel similar to that described in “08’TOG” [22]. In addition, we estimate the errors on many images with different iteration numbers, and find that two or three iterations can get the best results. In particular, we set the iteration number τ as 2 in all experiments to reduce the computation time.

Table 1 Parameter selection in terms of blur kernel and regularization parameter (case 1 is for the low-resolution image without ground truth; case 2 is for the low-resolution images acquired by downsampling the ground truth images)

4.1 Results on the low-resolution images without ground truth

In this section, test images are the low-resolution images without ground truth; thus, it is not available to make quantitative comparisons. We compare the proposed method with bicubic interpolation method, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], and “14’TIP” [9]. The upsampling factors are 2, 3, and 4. In particular, if the dimensions of the estimated high-resolution images acquired by “11’IPOL” [7] and “11’SIAM” [8] exceed 800×800, the images will be cropped. Hence, we do not show these results in Fig. 4, Fig. 6, Fig. 9, and Fig. 10 for the consistency of results.

Fig. 3
figure 3

Visual results of “flower" with the upsampling factor of 4. From top to bottom and from left to right: the low-resolution image “flower,” bicubic result, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], “14’TIP” [9], and our result

Fig. 4
figure 4

Visual results of “yacht” with the upsampling factor of 4. From left to right and then from top to bottom: the low-resolution image “yacht,” bicubic result, “08’TOG” [22], “14’TIP” [9], and our result

In Figs. 3 and 4, we test the proposed method on the image “flower” and “yacht.” The upsampling factor is 4. From Fig. 3, the results of bicubic interpolation, “11’IPOL” and “11’SIAM” show significant blur effects along the image edge. Although the result by "08’TOG" preserves sharp edges, its luminance is not good enough for visual effects. As shown in this figure, our result can generate sharp edges, while enjoying a better effect of brightness. From Fig. 4, the number of our result is clearer than other results. In addition, after upsampling the image “yacht” with the factor of 4, the resolution comes to 2048×1920. However, this procedure only takes less than 30 s (see Table 2). It demonstrates that the proposed method can deal with large-scale image resolution problem effectively.

Table 2 Times of test images (unit: seconds)

Figures 5, 6, 7 and 8 shows four example images with the upsampling factor of 3. In Fig. 5, there are some blur in the result of bicubic method and some staircases in the result of “08’TOG.” In the results of “11’IPOL” and “11’SIAM,” there are some visual artifacts. Despite preserving sharp edges and enjoying fast running time, the result of “14’TIP” makes the image over-flat. However, our result is able to introduce a better visual result. From Fig. 6, the proposed method provides sharp edges (see headdress and the green background). From Fig. 7, the result of the proposed method performs sharper edges than the results of bicubic method, “08’TOG,” and “11’IPOL”. In Fig. 8, the results of bicubic method, “08’TOG”, “11’IPOL,” and “11’SIAM” show blur effects significantly in the high-resolution images. For the result of “14’TIP,” it presents a clear high-resolution image but introduces significant staircases. In particular, the proposed method performs the best visual result comparing to other methods. Furthermore, the proposed method is faster than “08’TOG.” For instance, for the image “comic,” “08’TOG” requires 17.136 s, while the proposed method only needs 5.654 s (see Table 2).

Fig. 5
figure 5

Visual results of “wheel” with the upsampling factor of 3. From top to bottom and from left to right: the low-resolution image “wheel,” bicubic result, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], “14’TIP” [9], and our result

Fig. 6
figure 6

Visual results of “comic” with the upsampling factor of 3. From left to right: the low-resolution image “comic,” bicubic result, “08’TOG” [22], “14’TIP” [9], and our result

Fig. 7
figure 7

Visual results of “chilies” with the upsampling factor of 3. From top to bottom and from left to right: the low-resolution image “chilies,” bicubic result, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], “14’TIP” [9], and our result

Fig. 8
figure 8

Visual results of “number” with the upsampling factor of 3. From top to bottom and from left to right: the low-resolution image “number,” bicubic result, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], “14’TIP” [9], and our result

In Figs. 9 and 10, we test our method on images “house” and “starfish” with the upsampling factor of 2. As shown in these figures, the proposed method preserves sharp edges and keeps more details. In addition, the running time of our method is also much faster than “08’TOG.” For instance, for the image “starfish,” “08’TOG” needs 13.289 s, but our method only need 5.706 s to complete the image upsampling procedure (see Table 2).

Fig. 9
figure 9

Visual results of “house” with the upsampling factor of 2. From top to bottom and from left to right: the low-resolution image “house,” bicubic result, “08’TOG” [22], “14’TIP” [9], and our result

Fig. 10
figure 10

Visual results of “starfish” with the upsampling factor of 2. From top to bottom and from left to right: the low-resolution image “starfish”, bicubic result, “08’TOG” [22], “14’TIP” [9], and our result

4.2 Results on the low-resolution images acquired by downsampling the ground truth images

In this section, the low-resolution images are acquired by downsampling the ground truth images. We provide quantitative comparisons including root-mean-square error (RMSE), peak signal-noise ratio (PSNR), and structure similarity (SSIM) [41].

We mainly compare the proposed method with one reconstruction-based method “08’TOG” and four interpolation-based methods, including bicubic method, “11’IPOL,” “11’SIAM,” and “14’TIP.” In Fig. 11, the test image is “castle” and the upsampling factor is 3. Note that the results of bicubic method and “08’TOG” present blur effects. The results of “11’IPOL” and “11’SIAM” show some visual artifacts. Although the result of “14’TIP” can generate sharp edges, it has worse quantitative results (see Table 3). Furthermore, in this example, the proposed method shows the best RMSE, PSNR, and SSIM.

Fig. 11
figure 11

Visual results of “castle” with the upsampling factor of 3. From top to bottom and from left to right: the low-resolution image “castle,” the ground truth, bicubic result, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], “14’TIP” [9], and our result

Table 3 Quantitative comparison in terms of RMSE, PSNR and SSIM

Figure 12 exhibits the results of image “race” with the upsampling factor of 2. From this figure, we can see that the results of bicubic method and “08’TOG” show some blur effects. The results of “11’IPOL” and “11’SIAM” introduce some artificial contours. The result of “14’TIP” exhibits sharp edges but smoothens the image details. The proposed method provides sharp edges and enjoys competitive quantitative results. More quantitative results are shown in Table 3.

Fig. 12
figure 12

Visual results of “race” with the upsampling factor of 2. From top to bottom and from left to right: the low-resolution image “race,” the ground truth, bicubic result, “08’TOG” [22], “11’IPOL” [7], “11’SIAM” [8], “14’TIP” [9], and our result

5 Conclusions

In this paper, we presented a simple and effective single image super-resolution method. Our method was motivated by a fast image upsampling method, but we differently studied the estimated error of the blur kernel in the proposed method. We believed that the point spread function is not known exactly in the process of image super-resolution. Through applying a fast total variation deconvolution (FTVd) strategy, we took an iterative updating strategy to update the blur kernel and the high-resolution image. In particular, the proposed method could be applied to any upscaling factors without any extra datasets. In addition, we analyzed the parameter selection and computation time. Extensive experiments were provided to illustrate the effectiveness of the proposed method.

6 Endnotes

1 http://www.cse.cuhk.edu.hk/~leojia/projects/upsampling/index.html.

2 http://www.escience.cn/people/LingfengWang/publication.html.

3 http://demo.ipol.im/demo/g_image_interpolation_with_contour_stencils/.

4 http://demo.ipol.im/demo/g_interpolation_geometric_contour_stencils/.

References

  1. S Baker, T Kanade, Limits on super-resolution and how to break them. IEEE Trans. Pattern Anal. Mach. Intell.24:, 1167–1183 (2002).

    Article  Google Scholar 

  2. S Farsiu, MD Robinson, M Elad, P Milanfar, Fast and robust multiframe super resolution. IEEE Trans. Image Process.13:, 1327–1344 (2004).

    Article  Google Scholar 

  3. RY Tsai, TS Huang, Multiframe image restoration and registration. IEEE Trans. Image Process.1:, 317–339 (1984).

    Google Scholar 

  4. R Keys, Cubic convolution interpolation for digital image processing. IEEE Trans. Speech Signal Process.29:, 1153–1160 (1981).

    Article  MathSciNet  MATH  Google Scholar 

  5. LJ Deng, W Guo, TZ Huang, Single image super-resolution by approximated heaviside functions. Inform. Sci.348:, 107–123 (2016).

    Article  MathSciNet  Google Scholar 

  6. D Zhang, X Wu, An edge-guided image interpolation algorithm via directional filtering and data fusion. IEEE Trans. Image Process.15:, 2226–2238 (2006).

    Article  Google Scholar 

  7. P Getreuer, Image interpolation with contour stencils. Image Processing On Line(2011), http://www.ipol.im/.

  8. P Getreuer, Contour stencils: total variation along curves for adaptive image interpolation. SIAM J. Imaging Sci.4:, 954–979 (2011).

    Article  MathSciNet  MATH  Google Scholar 

  9. L Wang, H Wu, C Pan, Fast image upsampling via the displacement field. IEEE Trans. Image Process.23:, 5123–5135 (2014).

    Article  MathSciNet  Google Scholar 

  10. X Li, MT Orchard, New edge-directed interpolation. IEEE Trans. Image Process.10:, 1521–1527 (2001).

    Article  Google Scholar 

  11. LJ Deng, W Guo, TZ Huang, Single image super-resolution via an iterative reproducing kernel hilbert space method. IEEE Trans. Circuits and Systems for Video Technology (2015). doi:10.1109/TCSVT.2015.2475895.

  12. S Borman, RL Stevenson, Super-resolution from image sequences-a review, Midwest Symposium on Circuits and Systems (MWSCAS). Notre Dame, Indiana, pp. 374–378 (1998).

  13. S Rhee, MG Kang, Discrete cosine transform based regularized high-resolution image reconstruction algorithm. Optical Eng.38:, 1348–1356 (1999).

    Article  Google Scholar 

  14. AK Katsaggelos, KT Lay, NP Galatsanos, A general framework for frequency domain multi-channel signal processing. IEEE Trans. Image Process.2:, 417–420 (1993).

    Article  Google Scholar 

  15. S Lertrattanapanich, NK Bose, High resolution image formation from low resolution frames using delaunay triangulation. IEEE Trans. Image Process.11:, 1427–1441 (2002).

    Article  MathSciNet  Google Scholar 

  16. H Stark, P Oskoui, High-resolution image recovery from image-plane arrays, using convex projections. J. Optical Soc. Am. A. 6:, 1715–1726 (1989).

    Article  Google Scholar 

  17. D Capel, A Zisserman, Super-resolution enhancement of text image sequences. Intern. Conf. Pattern Recognit.1:, 600–605 (2000).

    Article  Google Scholar 

  18. R Fattal, Image upsampling via imposed edge statistics. ACM Trans. Graphics (TOG). 26(3) (2007). Article No.95.

  19. T Komatsu, T Igarashi, K Aizawa, T Saito, Very high resolution imaging scheme with multiple different-aperture cameras. Signal Process. Image Commun.5:, 511–526 (1993).

    Article  Google Scholar 

  20. A Chambolle, T Pock, A first-order primal-dual algorithm for convex problems with applications to imaging. J. Math. Imaging Vis.40:, 120–145 (2011).

    Article  MathSciNet  MATH  Google Scholar 

  21. M Irani, S Peleg, Motion analysis for image enhancement: resolution, occlusion, and transparency. journal of visual communication and image representation. J. Visual Commun. Image Repres.4:, 324–335 (1993).

    Article  Google Scholar 

  22. Q Shan, Z Li, J Jia, CK Tang, Fast image/video upsampling. ACM Trans. Graphics (TOG). 27:, 32–39 (2008).

    Google Scholar 

  23. P Chatterjee, S Mukherjee, S Chaudhuri, G Seetharaman, Application of papoulis-gerchberg method in image super-resolution and inpainting. Comput. J.52:, 80–89 (2009).

    Article  Google Scholar 

  24. H Takeda, S Farsiu, P Milanfar, Kernel regression for image processing and reconstruction. IEEE Trans. Image Process.16:, 349–366 (2007).

    Article  MathSciNet  Google Scholar 

  25. X Qinlan, C Hong, C Huimin, Improved example-based single-image super-resolution. Intern. Congr. Image Signal Process. (CISP). 3:, 1204–1207 (2010).

    Article  Google Scholar 

  26. C Kim, K Choi, K Hwang, JB Ra, Learning-based superresolution using a multi-resolution wavelet approach, International Workshop Advance. Image Tech (IWAIT), Gangwon-Do, South Korea (2009).

  27. C Dong, CC Loy, K He, X Tang, Learning a deep convolutional network for image super-resolution. European Conference on Computer Vision (ECCV), Zurich, Switzerland, pp. 184–199 (2014).

  28. J Yang, J Wright, TS Huang, Y Ma, Image super-resolution via sparse representation. IEEE Trans. Image Process.19:, 2861–2873 (2010).

    Article  MathSciNet  Google Scholar 

  29. K Jia, X Wang, X Tang, Image transformation based on learning dictionaries across image spaces. IEEE Trans. Pattern Anal. Mach. Intell.35:, 367–380 (2013).

    Article  Google Scholar 

  30. J Yang, Z Wang, Z Lin, S Cohen, T Huang, Coupled dictionary training for image super-resolution. IEEE Trans. Image Process.21:, 3467–3478 (2012).

    Article  MathSciNet  Google Scholar 

  31. WT Freeman, TR Jones, EC Pasztor, Example-based super-resolution. IEEE Comput. Graph. Appl.22:, 56–65 (2002).

    Article  Google Scholar 

  32. WT Freeman, EC Pasztor, OT Carmichael, Learning low-level vision. Intern. J. Comput. Vis.40:, 25–47 (2000).

    Article  MATH  Google Scholar 

  33. N Efrat, D Glasner, A Apartsin, B Nadler, A Levin, Accurate blur models vs. image priors in single image super-resolution. IEEE Intern. Conf. Computer Vision (ICCV), Sydney, Australia (2013).

  34. Y Wang, JC Yang, W Yin, Y Zhang, A new alternating minimization algorithm for total variation image reconstruction. SIAM J. Imaging Sci.1:, 248–272 (2008).

    Article  MathSciNet  MATH  Google Scholar 

  35. XL Zhao, F Wang, TZ Huang, MK Ng, RJ Plemmons, Deblurring and sparse unmixing for hyperspectral images. IEEE Trans. Geosci. Remote Sensing. 51:, 4045–4058 (2013).

    Article  Google Scholar 

  36. S Wang, TZ Huang, J Liu, XG Lv, An alternating iterative algorithm for image deblurring and denoising problems. Commun. Nonlin. Sci. Numer. Simul.19:, 617–626 (2014).

    Article  MathSciNet  Google Scholar 

  37. G Liu, TZ Huang, J Liu, High-order tv l1-based images restoration and spatially adapted regularization parameter selection. Comput. Math. App.67:, 2015–2026 (2014).

    Article  Google Scholar 

  38. XL Zhao, F Wang, MK Ng, A new convex optimization model for multiplicative noise and blur removal. SIAM J. Imaging Sci.7:, 456–475 (2014).

    Article  MathSciNet  MATH  Google Scholar 

  39. LJ Deng, H Guo, TZ Huang, A fast image recovery algorithm based on splitting deblurring and denoising. J. Comput. Appl. Math.287:, 88–97 (2015).

    Article  MathSciNet  MATH  Google Scholar 

  40. XL Zhao, W Wang, TY Zeng, TZ Huang, MK Ng, Total variation structured total least squares method for image restoration. SIAM J. Sci. Comput.35:, 1304–1320 (2013).

    Article  MathSciNet  MATH  Google Scholar 

  41. Z Wang, AC Bovik, HR Sheikh, EP Simoncelli, Image quality assessment: from error visibility to structural similarity. IEEE Trans. Image Process.13:, 600–612 (2004).

    Article  Google Scholar 

Download references

Acknowledgements

This research is supported by 973 Program (2013CB329404), NSFC (61370147, 61170311), the Fundamental Research Funds for the Central Universities (ZYGX2013Z005).

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Ting-Zhu Huang.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

HY performed the main part of this manuscript. TZH modified the content of the manuscript. LJD carried out the numerical results, and XLZ participated in the discussion. All authors read and approved the final manuscript.

Rights and permissions

Open Access This article is distributed under the terms of the Creative Commons Attribution 4.0 International License(http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Yu, H., Huang, TZ., Deng, LJ. et al. Super-resolution via a fast deconvolution with kernel estimation. J Image Video Proc. 2017, 3 (2016). https://doi.org/10.1186/s13640-016-0125-6

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s13640-016-0125-6

Keywords