📜  按特定角度旋转图像 opencv - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:18.103000             🧑  作者: Mango

代码示例1
from scipy import ndimage

#rotation angle in degree
rotated = ndimage.rotate(image_to_rotate, 45)