├── .idea ├── inspectionProfiles │ └── Project_Default.xml ├── libraries │ └── R_User_Library.xml ├── misc.xml ├── modules.xml ├── opencv3.iml ├── vcs.xml └── workspace.xml ├── 01_处理文件、摄像头和图形用户界面 ├── 011_读写图像文件.py ├── 012_图像与原始字节转换.py ├── 013_使用numpy访问图像数据.py ├── 014_视频文件的读写.py ├── 015_捕获摄像头的帧.py ├── 016_窗口显示图像.py ├── 017_窗口显示摄像头的帧.py ├── mm1_gray.png ├── randomColor.png └── randomGray.png ├── 02_Cameo项目(人脸跟踪和图像处理) ├── __init__.py ├── cameo.py ├── depth.py ├── filters.py ├── filters.pyc ├── managers.py ├── managers.pyc ├── utils.py └── utils.pyc ├── 03_处理图像 ├── 001_滤波器.py ├── 002_canny边缘检测.py ├── 003_轮廓检测.py ├── 004_矩形、圆形边界框.py ├── 005_凸轮廓与douglas-peucher算法.py ├── 006_直线检测.py ├── 007_圆检测.py └── 008_在图像上写字.py ├── 04_深度估计与分割 ├── 001_普通摄像头进行深度估计.py ├── 002_grabcut前景检测.py ├── 003_分水岭算法图像分割.py └── __init__.py ├── 05_人脸检测和识别 ├── 001_静态图像人脸检测.py ├── 002_视频中检测人脸.py ├── 003_人脸识别.py └── data │ └── faces │ ├── s0 │ ├── 0.pgm │ ├── 1.pgm │ ├── 10.pgm │ ├── 11.pgm │ ├── 12.pgm │ ├── 13.pgm │ ├── 14.pgm │ ├── 15.pgm │ ├── 16.pgm │ ├── 17.pgm │ ├── 18.pgm │ ├── 19.pgm │ ├── 2.pgm │ ├── 20.pgm │ ├── 21.pgm │ ├── 22.pgm │ ├── 23.pgm │ ├── 24.pgm │ ├── 25.pgm │ ├── 26.pgm │ ├── 27.pgm │ ├── 28.pgm │ ├── 29.pgm │ ├── 3.pgm │ ├── 30.pgm │ ├── 31.pgm │ ├── 32.pgm │ ├── 33.pgm │ ├── 34.pgm │ ├── 35.pgm │ ├── 36.pgm │ ├── 37.pgm │ ├── 38.pgm │ ├── 39.pgm │ ├── 4.pgm │ ├── 40.pgm │ ├── 41.pgm │ ├── 42.pgm │ ├── 43.pgm │ ├── 44.pgm │ ├── 45.pgm │ ├── 46.pgm │ ├── 47.pgm │ ├── 48.pgm │ ├── 49.pgm │ ├── 5.pgm │ ├── 50.pgm │ ├── 51.pgm │ ├── 52.pgm │ ├── 53.pgm │ ├── 54.pgm │ ├── 55.pgm │ ├── 56.pgm │ ├── 57.pgm │ ├── 58.pgm │ ├── 59.pgm │ ├── 6.pgm │ ├── 60.pgm │ ├── 61.pgm │ ├── 62.pgm │ ├── 63.pgm │ ├── 64.pgm │ ├── 65.pgm │ ├── 66.pgm │ ├── 67.pgm │ ├── 68.pgm │ ├── 69.pgm │ ├── 7.pgm │ ├── 70.pgm │ ├── 71.pgm │ ├── 72.pgm │ ├── 73.pgm │ ├── 74.pgm │ ├── 75.pgm │ ├── 76.pgm │ ├── 77.pgm │ ├── 78.pgm │ ├── 79.pgm │ ├── 8.pgm │ ├── 80.pgm │ ├── 81.pgm │ ├── 82.pgm │ ├── 83.pgm │ ├── 84.pgm │ ├── 85.pgm │ └── 9.pgm │ ├── s1 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s10 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s11 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s12 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s13 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s14 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s15 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s16 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s17 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s18 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s19 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s2 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s20 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s21 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s22 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s23 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s24 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s25 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s26 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s27 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s28 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s29 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s3 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s30 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s31 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s32 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s33 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s34 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s35 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s36 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s37 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s38 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s39 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s4 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s40 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s5 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s6 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s7 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ ├── s8 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm │ └── s9 │ ├── 1.pgm │ ├── 10.pgm │ ├── 2.pgm │ ├── 3.pgm │ ├── 4.pgm │ ├── 5.pgm │ ├── 6.pgm │ ├── 7.pgm │ ├── 8.pgm │ └── 9.pgm ├── 06_图像检测和搜索 ├── 001_检测角点特征.py ├── 002_DoG和SIFT特征提取与描述.py ├── 003_hessian算法surf提取和检测.py ├── 004_基于ORB的特征检测和BF暴力匹配.py ├── 005_k近邻匹配.py ├── 006_FLANN匹配.py ├── 007_FLANN单应性匹配.py └── 008_基于文身取证的应用.py ├── 07_目标检测与识别 ├── 001_检测人.py └── 002_汽车检测.py ├── data ├── album1.png ├── chess1.jpg ├── circle.jpg ├── haarcascade_eye.xml ├── haarcascade_frontalface_default.xml ├── item2.jpg ├── line1.png ├── logo1.png ├── mm1.jpg ├── mm2.jpeg ├── mm3.jpg ├── people1.jpg ├── people2.jpg ├── person1.jpg └── walez1.jpg └── requirements.txt /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/libraries/R_User_Library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/libraries/R_User_Library.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/opencv3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/opencv3.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/011_读写图像文件.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/011_读写图像文件.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/012_图像与原始字节转换.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/012_图像与原始字节转换.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/013_使用numpy访问图像数据.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/013_使用numpy访问图像数据.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/014_视频文件的读写.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/014_视频文件的读写.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/015_捕获摄像头的帧.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/015_捕获摄像头的帧.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/016_窗口显示图像.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/016_窗口显示图像.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/017_窗口显示摄像头的帧.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/017_窗口显示摄像头的帧.py -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/mm1_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/mm1_gray.png -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/randomColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/randomColor.png -------------------------------------------------------------------------------- /01_处理文件、摄像头和图形用户界面/randomGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/01_处理文件、摄像头和图形用户界面/randomGray.png -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/cameo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/cameo.py -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/depth.py -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/filters.py -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/filters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/filters.pyc -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/managers.py -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/managers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/managers.pyc -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/utils.py -------------------------------------------------------------------------------- /02_Cameo项目(人脸跟踪和图像处理)/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/02_Cameo项目(人脸跟踪和图像处理)/utils.pyc -------------------------------------------------------------------------------- /03_处理图像/001_滤波器.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/001_滤波器.py -------------------------------------------------------------------------------- /03_处理图像/002_canny边缘检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/002_canny边缘检测.py -------------------------------------------------------------------------------- /03_处理图像/003_轮廓检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/003_轮廓检测.py -------------------------------------------------------------------------------- /03_处理图像/004_矩形、圆形边界框.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/004_矩形、圆形边界框.py -------------------------------------------------------------------------------- /03_处理图像/005_凸轮廓与douglas-peucher算法.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_处理图像/006_直线检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/006_直线检测.py -------------------------------------------------------------------------------- /03_处理图像/007_圆检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/007_圆检测.py -------------------------------------------------------------------------------- /03_处理图像/008_在图像上写字.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/03_处理图像/008_在图像上写字.py -------------------------------------------------------------------------------- /04_深度估计与分割/001_普通摄像头进行深度估计.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_深度估计与分割/002_grabcut前景检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/04_深度估计与分割/002_grabcut前景检测.py -------------------------------------------------------------------------------- /04_深度估计与分割/003_分水岭算法图像分割.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/04_深度估计与分割/003_分水岭算法图像分割.py -------------------------------------------------------------------------------- /04_深度估计与分割/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_人脸检测和识别/001_静态图像人脸检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/001_静态图像人脸检测.py -------------------------------------------------------------------------------- /05_人脸检测和识别/002_视频中检测人脸.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/002_视频中检测人脸.py -------------------------------------------------------------------------------- /05_人脸检测和识别/003_人脸识别.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/003_人脸识别.py -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/0.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/0.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/11.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/11.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/12.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/12.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/13.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/13.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/14.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/14.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/15.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/15.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/16.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/16.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/17.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/17.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/18.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/18.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/19.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/19.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/20.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/20.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/21.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/21.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/22.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/22.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/23.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/23.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/24.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/24.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/25.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/25.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/26.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/26.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/27.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/27.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/28.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/28.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/29.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/29.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/30.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/30.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/31.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/31.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/32.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/32.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/33.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/33.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/34.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/34.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/35.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/35.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/36.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/36.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/37.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/37.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/38.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/38.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/39.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/39.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/40.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/40.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/41.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/41.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/42.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/42.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/43.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/43.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/44.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/44.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/45.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/45.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/46.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/46.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/47.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/47.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/48.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/48.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/49.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/49.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/50.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/50.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/51.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/51.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/52.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/52.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/53.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/53.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/54.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/54.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/55.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/55.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/56.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/56.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/57.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/57.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/58.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/58.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/59.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/59.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/60.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/60.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/61.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/61.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/62.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/62.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/63.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/63.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/64.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/64.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/65.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/65.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/66.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/66.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/67.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/67.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/68.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/68.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/69.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/69.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/70.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/70.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/71.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/71.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/72.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/72.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/73.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/73.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/74.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/74.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/75.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/75.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/76.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/76.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/77.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/77.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/78.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/78.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/79.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/79.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/80.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/80.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/81.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/81.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/82.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/82.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/83.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/83.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/84.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/84.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/85.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/85.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s0/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s0/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s1/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s1/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s10/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s10/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s11/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s11/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s12/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s12/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s13/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s13/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s14/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s14/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s15/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s15/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s16/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s16/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s17/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s17/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s18/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s18/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s19/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s19/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s2/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s2/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s20/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s20/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s21/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s21/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s22/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s22/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s23/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s23/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s24/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s24/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s25/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s25/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s26/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s26/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s27/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s27/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s28/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s28/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s29/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s29/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s3/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s3/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s30/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s30/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s31/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s31/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s32/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s32/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s33/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s33/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s34/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s34/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s35/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s35/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s36/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s36/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s37/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s37/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s38/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s38/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s39/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s39/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s4/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s4/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s40/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s40/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s5/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s5/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s6/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s6/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s7/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s7/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s8/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s8/9.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/1.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/10.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/2.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/3.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/4.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/5.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/6.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/7.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/8.pgm -------------------------------------------------------------------------------- /05_人脸检测和识别/data/faces/s9/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/05_人脸检测和识别/data/faces/s9/9.pgm -------------------------------------------------------------------------------- /06_图像检测和搜索/001_检测角点特征.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/001_检测角点特征.py -------------------------------------------------------------------------------- /06_图像检测和搜索/002_DoG和SIFT特征提取与描述.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/002_DoG和SIFT特征提取与描述.py -------------------------------------------------------------------------------- /06_图像检测和搜索/003_hessian算法surf提取和检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/003_hessian算法surf提取和检测.py -------------------------------------------------------------------------------- /06_图像检测和搜索/004_基于ORB的特征检测和BF暴力匹配.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/004_基于ORB的特征检测和BF暴力匹配.py -------------------------------------------------------------------------------- /06_图像检测和搜索/005_k近邻匹配.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/005_k近邻匹配.py -------------------------------------------------------------------------------- /06_图像检测和搜索/006_FLANN匹配.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/006_FLANN匹配.py -------------------------------------------------------------------------------- /06_图像检测和搜索/007_FLANN单应性匹配.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/007_FLANN单应性匹配.py -------------------------------------------------------------------------------- /06_图像检测和搜索/008_基于文身取证的应用.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/06_图像检测和搜索/008_基于文身取证的应用.py -------------------------------------------------------------------------------- /07_目标检测与识别/001_检测人.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/07_目标检测与识别/001_检测人.py -------------------------------------------------------------------------------- /07_目标检测与识别/002_汽车检测.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/07_目标检测与识别/002_汽车检测.py -------------------------------------------------------------------------------- /data/album1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/album1.png -------------------------------------------------------------------------------- /data/chess1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/chess1.jpg -------------------------------------------------------------------------------- /data/circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/circle.jpg -------------------------------------------------------------------------------- /data/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/haarcascade_eye.xml -------------------------------------------------------------------------------- /data/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /data/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/item2.jpg -------------------------------------------------------------------------------- /data/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/line1.png -------------------------------------------------------------------------------- /data/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/logo1.png -------------------------------------------------------------------------------- /data/mm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/mm1.jpg -------------------------------------------------------------------------------- /data/mm2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/mm2.jpeg -------------------------------------------------------------------------------- /data/mm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/mm3.jpg -------------------------------------------------------------------------------- /data/people1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/people1.jpg -------------------------------------------------------------------------------- /data/people2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/people2.jpg -------------------------------------------------------------------------------- /data/person1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/person1.jpg -------------------------------------------------------------------------------- /data/walez1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/data/walez1.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linyi0604/Computer-Vision/HEAD/requirements.txt --------------------------------------------------------------------------------