
计算机视觉
Python小萝卜
这个作者很懒,什么都没留下…
展开
-
windows基于face_recognition实现人脸识别
环境搭建pip install opencv-python --user -i https://pypi.tuna.tsinghua.edu.cn/simplepip install opencv-contrib-python --user -i https://pypi.tuna.tsinghua.edu.cn/simplepip install cmake --user -i https://pypi.tuna.tsinghua.edu.cn/simplepip install boost -原创 2021-12-26 17:47:29 · 2248 阅读 · 0 评论 -
windows基于opecv-python实现人脸识别
环境搭建pip install opencv-python --user -i https://pypi.tuna.tsinghua.edu.cn/simplepip install opencv-contrib-python --user -i https://pypi.tuna.tsinghua.edu.cn/simple训练数据准备在data_train文件下放置训练数据,一个文件夹代表一个人的图片模型训练opencv读取训练数据,并用级联分类器检测人脸将人脸数据输入人.原创 2021-12-26 17:19:56 · 2152 阅读 · 0 评论 -
opencv-python控制笔记本摄像头
安装opencv-pythonpip install opencv-python开启线程import cv2import threadingclass cameraThread(threading.Thread): def __init__(self): super().__init__() self.working = True self.cap = cv2.VideoCapture(0) self.cap.set原创 2021-09-05 21:59:32 · 355 阅读 · 0 评论 -
python实现车牌识别
原始图象代码from hyperlpr import HyperLPR_plate_recognitionimport cv2from PIL import ImageFont, ImageDraw, Imageimport numpy as npimage = cv2.imread("car.jpg")#读入图片result=HyperLPR_plate_recognition(image)#识别车牌plate = result[0][0...原创 2021-09-05 21:24:02 · 16235 阅读 · 8 评论