使用scipy.ndimage.rotate旋转图像后的新坐标

时间:2017-03-01 17:17:56

标签: python image python-2.7 scipy

图像是(250,250,3)的数组。使用

将图像旋转一定程度

image = scipy.ndimage.rotate(image,deg,reshape = False)

图像上有两个点,旋转后的点由

计算
deg = deg*np.pi/180
x_new = y*np.sin(deg) + x*np.cos(deg)
y_new = y *np.cos(deg) - x*np.sin(deg)

发布帖子Find new coordinates of a point after rotation

但是,旋转后的点位置不符合预期: Image before rotation Image after rotation

这些点并不固定在人眼的位置。我哪里做错了?提前致谢。

0 个答案:

没有答案