使用opencv训练面部识别器

时间:2018-05-04 02:18:30

标签: python opencv

for imagePath in imagePaths:
faceImg=Image.open(imagePath).convert('L');
faceNp=np.array(faceImg,'uint8')
ID=int(os.path.split(imagePath)[1].split(".")[1])
faces.append(faceNp)
IDs.append(ID)

我运行此代码。它只显示在数据集中存储的多个面中的单个面。我怎样才能训练很多面孔。

0 个答案:

没有答案