CurricularFace人脸识别模型不可以用本地的图片进行判断吗?
你好,是可以的,在代码示例中使用自己的图片,这里内部集成了SCRFD人脸检测 ,所以本地图片直接传原图即可,会比较两张图中的最大脸的相似度。
import cv2
import numpy as np
from modelscope.pipelines import pipeline
from modelscope.utils.constant import Tasks
from modelscope.outputs import OutputKeys
img1 = 'your/img/1.jpg' #
赞0
踩0