其他分享
首页 > 其他分享> > 如何用opencv绘制点

如何用opencv绘制点

作者:互联网

 for id,point in enumerate(landmarks):
     # 68点坐标
     #获取x,y坐标
     pos = (point[0,0],point[0,1])
     print(idx,pos)
     # 利用cv2.circle给每个特征点画一个圈,共68个
     cv2.circle(img_src, pos, 4, color=(0, 255, 0))
     # 利用cv2.putText输出1-68
     font = cv2.FONT_HERSHEY_SIMPLEX
     #打印点的索引
     cv2.putText(img_src, str(id + 1), pos, font, 0.4, (0, 0, 0), 1, cv2.LINE_AA)

标签:point,cv2,pos,opencv,68,font,绘制,id,如何
来源: https://blog.csdn.net/qq_16792139/article/details/123627896