opencv2:调整图像大小时的双三次插值

时间:2014-09-22 14:01:24

标签: python opencv image-processing

我想使用应用cv2.resize进行图片大小调整。我想要做 调整大小时的双三次插值。我该怎么办?

1 个答案:

答案 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了解详情