OpenCv 基础函数 # 读取图片 image = cv2.imread("test01.jpg") # 转灰度 gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) # 修改尺寸 resize_image = cv2.resize(image, Read More
posted @ 2023-12-18 10:34 PythonNew_Mr.Wang Views(92) Comments(0) Diggs(0) Edit