聪明大叔

文章
6
资源
0
加入时间
2年10月21天

opencv-图像人脸识别和视频人脸识别

首先可以取opencv官方github下载识别模型xml文件:https://github.com/lonngxiang/opencv/tree/master/data/haarcascades1,图像人脸识别import cv2filepath =r"C:\Users\Lavector\Desktop\1111.jpg"img = cv2.imread(filepath) # 读取图...

PyTorch笔记

1. nn.Sequential顺序容器。模块将按照在构造函数中传递的顺序添加到它。或者,也可以传入模块的有序字典。# Example of using Sequentialmodel = nn.Sequential( nn.Conv2d(1,20,5), nn.ReLU(), nn.Conv2d(20,64,5), nn.ReLU() )# Example of using Sequentia...