模式识别大作业-代码数据增强数据处理SVM训练模型
数据增强翻转,旋转# -*- coding:utf-8 -*-import osimport globimport cv2def rotate(image, angle=45 , scale=1.0): height, width = image.shape[:2]#获取图像的高和宽 center = (width / 2, height / 2) #取图像的中点,图像以中心点旋转 M = cv2.getRotationMatrix2D(center, angle, scale)#获得