数字图像处理(学习笔记)---图像插值算法(image interpolation algorithms)(最近邻插,双线性、双三次)
1、最近邻插法`#最近邻插值法fromPILimportImageimportmatplotlib.pyplotaspltimportnumpyasnpimportmathdefinterpolation(img,dstH,dstW):scrH,scrW,_=img.shaperetimg=np.zeros((dstH,dstW,3),dtype=np.uint8)foriinrange(dstH