摘要:
... cnt = 0 font = cv2.FONT_HERSHEY_SIMPLEX for n in temp3_value: print(n) x = int(n['x']) y = int(n['y']) point = (x,y) cv2.circle(img, point, 1, (0, 阅读全文
摘要:
使用 from pandas import Series 1. 创建Series a. 常规创建 >>> obj = Series([1,2,3], index=['A','B','C']) >>> obj A 1 B 2 C 3 dtype: int64 b. 根据字典创建 >>> obj = S 阅读全文