图像是(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
这些点并不固定在人眼的位置。我哪里做错了?提前致谢。