我有以下方法来旋转图像(python):
> def rotateImage(image, angle):
> row,col = image.shape[0:2]
> center=tuple(np.array([row,col])/2)
> rot_mat = cv2.getRotationMatrix2D(center,angle,1.0)
> new_image = cv2.warpAffine(image, rot_mat, (col,row))
> return new_image
这是OpenCV返回的旋转(15度角)图片: 如果我在photoshop中围绕中心旋转图像,则这是图像:
显然有区别。我很确定Photoshop正确地做到了(或者更好-我在photoshop中正确地做到了),我缺少什么?