摘要: import cv2import numpy as npgreen = np.uint8([[[152, 245, 255]]]) # 输入待转换颜色的BGR值hsv_green = cv2.cvtColor(green, cv2.COLOR_BGR2HSV)print(hsv_green) 阅读全文
posted @ 2018-12-17 09:12 Hello_2018 阅读(1290) 评论(0) 推荐(0) 编辑