旋转: def get_image_rotation(image): #通用写法,即使传入的是三通道图片依然不会出错 height, width = image.shape[:2] center = (width // 2, height // 2) rotation = random.randint(-20,20) #得到旋转矩阵,第一个参数为旋转中心,第二个参数为旋转角度,第三个参数为旋转之前原图像缩放比例 M = cv2.getRotationMatrix2D(center, -rotat