码字不易,如果此文对你有所帮助,请帮忙点赞,感谢!
一. 双线性插值法原理:
① 何为线性插值?
插值就是在两个数之间插入一个数,线性插值原理图如下:
② 各种插值法:
插值法的第一步都是相同的,计算目标图(dstImage)的坐标点对应原图(srcImage)中哪个坐标点来填充,计算公式为:
srcX = dstX * (srcWidth/dstWidth)
srcY = dstY * (srcHeight/dstHeight)
(dstX,dstY)表示目标图像的某个坐标点,(srcX,srcY)表示与之对应的原图像的坐标点。srcWidth/dstWidth 和 srcHeight/dstHeight 分别表示宽和高的放缩比。
那么问题来了,通过这个公式算出来的 srcX, scrY 有可能是小数,但是原图像坐标点是不存在小数的,都是整数,得想办法把它转换成整数才行。
不同插值法的区别就体现在 srcX, scrY 是小数时,怎么将其变成整数去取原图像中的像素值。
最近邻插值(Nearest-neighborInterpolation):看名字就很直白,四舍五入选取最接近的整数。这样的做法会导致像素变化不连续,在目标图像中产生锯齿边缘。
双线性插值(Bilinear Interpolation):双线性就是利用与坐标轴平行的两条直线去把小数坐标分解到相邻的四个整数坐标点。权重与距离成反比。
双三次插值(Bicubic Interpolation):与双线性插值类似,只不过用了相邻的16个点。但是需要注意的是,前面两种方法能保证两个方向的坐标权重和为1,但是双三次插值不能保证这点,所以可能出现像素值越界的情况,需要截断。
③ 双线性插值算法原理
假如我们想得到未知函数 f 在点 P = (x, y) 的值,假设我们已知函数 f 在 Q11 = (x1, y1)、Q12 = (x1, y2), Q21 = (x2, y1) 以及 Q22 = (x2, y2) 四个点的值。最常见的情况,f就是一个像素点的像素值。首先在 x 方向进行线性插值,然后再在 y 方向上进行线性插值,最终得到双线性插值的结果。
④ 举例说明
二. python实现灰度图像双线性插值算法:
灰度图像双线性插值放大缩小
1 import numpy as np 2 import math 3 import cv2 4 5 def double_linear(input_signal, zoom_multiples): 6 ''' 7 双线性插值 8 :param input_signal: 输入图像 9 :param zoom_multiples: 放大倍数 10 :return: 双线性插值后的图像 11 ''' 12 input_signal_cp = np.copy(input_signal) # 输入图像的副本 13 14 input_row, input_col = input_signal_cp.shape # 输入图像的尺寸(行、列) 15 16 # 输出图像的尺寸 17 output_row = int(input_row * zoom_multiples) 18 output_col = int(input_col * zoom_multiples) 19 20 output_signal = np.zeros((output_row, output_col)) # 输出图片 21 22 for i in range(output_row): 23 for j in range(output_col): 24 # 输出图片中坐标 (i,j)对应至输入图片中的最近的四个点点(x1,y1)(x2, y2),(x3, y3),(x4,y4)的均值 25 temp_x = i / output_row * input_row 26 temp_y = j / output_col * input_col 27 28 x1 = int(temp_x) 29 y1 = int(temp_y) 30 31 x2 = x1 32 y2 = y1 + 1 33 34 x3 = x1 + 1 35 y3 = y1 36 37 x4 = x1 + 1 38 y4 = y1 + 1 39 40 u = temp_x - x1 41 v = temp_y - y1 42 43 # 防止越界 44 if x4 >= input_row: 45 x4 = input_row - 1 46 x2 = x4 47 x1 = x4 - 1 48 x3 = x4 - 1 49 if y4 >= input_col: 50 y4 = input_col - 1 51 y3 = y4 52 y1 = y4 - 1 53 y2 = y4 - 1 54 55 # 插值 56 output_signal[i, j] = (1-u)*(1-v)*int(input_signal_cp[x1, y1]) + (1-u)*v*int(input_signal_cp[x2, y2]) + u*(1-v)*int(input_signal_cp[x3, y3]) + u*v*int(input_signal_cp[x4, y4]) 57 return output_signal 58 59 # Read image 60 img = cv2.imread("../paojie_g.jpg",0).astype(np.float) 61 out = double_linear(img,2).astype(np.uint8) 62 # Save result 63 cv2.imshow("result", out) 64 cv2.imwrite("out.jpg", out) 65 cv2.waitKey(0) 66 cv2.destroyAllWindows()
三. 灰度图像双线性插值实验结果:
四. 彩色图像双线性插值python实现
1 from PIL import Image 2 import matplotlib.pyplot as plt 3 import numpy as np 4 import math 5 def BiLinear_interpolation(img,dstH,dstW): 6 scrH,scrW,_=img.shape 7 img=np.pad(img,((0,1),(0,1),(0,0)),'constant') 8 retimg=np.zeros((dstH,dstW,3),dtype=np.uint8) 9 for i in range(dstH): 10 for j in range(dstW): 11 scrx=(i+1)*(scrH/dstH)-1 12 scry=(j+1)*(scrW/dstW)-1 13 x=math.floor(scrx) 14 y=math.floor(scry) 15 u=scrx-x 16 v=scry-y 17 retimg[i,j]=(1-u)*(1-v)*img[x,y]+u*(1-v)*img[x+1,y]+(1-u)*v*img[x,y+1]+u*v*img[x+1,y+1] 18 return retimg 19 im_path='../paojie.jpg' 20 image=np.array(Image.open(im_path)) 21 image2=BiLinear_interpolation(image,image.shape[0]*2,image.shape[1]*2) 22 image2=Image.fromarray(image2.astype('uint8')).convert('RGB') 23 image2.save('out.png')
五. 彩色图像双线性插值实验结果:
六. 最近邻插值算法和双三次插值算法可参考:
① 最近邻插值算法:https://www.cnblogs.com/wojianxin/p/12515061.html
https://blog.csdn.net/Ibelievesunshine/article/details/104936006
② 双三次插值算法:https://www.cnblogs.com/wojianxin/p/12516762.html
https://blog.csdn.net/Ibelievesunshine/article/details/104942406
七. 参考内容: