我想使用应用cv2.resize
进行图片大小调整。我想要做
调整大小时的双三次插值。我该怎么办?
答案 0 :(得分:4)
img = cv2.imread('source to image here')
cv2.resize(img,fx=scaleX,fy=scaleY, interpolation = cv2.INTER_CUBIC)
我还没有测试过它。查看http://docs.opencv.org/modules/imgproc/doc/geometric_transformations.html#resize了解详情