人臉識別OPENCV

#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 文件名:test.py

import os

fb=open ("a.txt","w+")
with open("at.txt",'r') as alc:
    i=0
    for line in alc:
        print(line.strip())
        line=line.strip()
        line+=";%d"%i+"\n"
        print(line.strip())
        fb.write(line)
        i+=1
    

這是人臉庫:
https://github.com/opencv/opencv_contrib
https://blog.csdn.net/sinat_37185987/article/details/82956367
在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章