本文整理汇总了Python中cv2.FONT_HERSHEY_SCRIPT_SIMPLEX属性的典型用法代码示例。如果您正苦于以下问题:Python cv2.FONT_HERSHEY_SCRIPT_SIMPLEX属性的具体用法?Python cv2.FONT_HERSHEY_SCRIPT_SIMPLEX怎么用?Python cv2.FONT_HERSHEY_SCRIPT_SIMPLEX使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cv2
的用法示例。
在下文中一共展示了cv2.FONT_HERSHEY_SCRIPT_SIMPLEX属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: annotate_landmarks
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import FONT_HERSHEY_SCRIPT_SIMPLEX [as 别名]
def annotate_landmarks(im, landmarks):
im = im.copy()
for idx, point in enumerate(landmarks):
pos = (point[0, 0], point[0, 1])
cv2.putText(
im,
str(idx),
pos,
fontFace=cv2.FONT_HERSHEY_SCRIPT_SIMPLEX,
fontScale=0.4,
color=(0, 0, 255))
cv2.circle(im, pos, 3, color=(0, 255, 255))
return im
示例2: annotate_landmarks
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import FONT_HERSHEY_SCRIPT_SIMPLEX [as 别名]
def annotate_landmarks(img, landmarks, font_scale = 0.4):
for idx, point in enumerate(landmarks):
pos = (point[0, 0], point[0, 1])
cv2.putText(img, str(idx), pos, fontFace=cv2.FONT_HERSHEY_SCRIPT_SIMPLEX, fontScale=font_scale, color=(0, 0, 255))
cv2.circle(img, pos, 3, color=(0, 255, 255))
return img
开发者ID:bogireddytejareddy,项目名称:micro-expression-recognition,代码行数:8,代码来源:Intermediate_MicroExpFuseNet.py
示例3: annotate_landmarks
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import FONT_HERSHEY_SCRIPT_SIMPLEX [as 别名]
def annotate_landmarks(im, landmarks):
im = im.copy()
for idx, point in enumerate(landmarks):
pos = (point[0, 0], point[0, 1])
cv2.putText(im, str(idx), pos,
fontFace=cv2.FONT_HERSHEY_SCRIPT_SIMPLEX,
fontScale=0.4,
color=(0, 0, 255))
cv2.circle(im, pos, 3, color=(0, 255, 255))
return im