├── .DS_Store ├── .gitignore ├── README.md ├── Resource ├── dstimg.jpg ├── facelibrary │ ├── face │ │ ├── april.pgm │ │ ├── s1.pgm │ │ ├── s10.pgm │ │ ├── s11.pgm │ │ ├── s12.pgm │ │ ├── s13.pgm │ │ ├── s14.pgm │ │ ├── s15.pgm │ │ ├── s16.pgm │ │ ├── s17.pgm │ │ ├── s18.pgm │ │ ├── s19.pgm │ │ ├── s2.pgm │ │ ├── s20.pgm │ │ ├── s21.pgm │ │ ├── s22.pgm │ │ ├── s23.pgm │ │ ├── s24.pgm │ │ ├── s25.pgm │ │ ├── s26.pgm │ │ ├── s27.pgm │ │ ├── s28.pgm │ │ ├── s29.pgm │ │ ├── s3.pgm │ │ ├── s30.pgm │ │ ├── s31.pgm │ │ ├── s32.pgm │ │ ├── s33.pgm │ │ ├── s34.pgm │ │ ├── s35.pgm │ │ ├── s36.pgm │ │ ├── s37.pgm │ │ ├── s38.pgm │ │ ├── s39.pgm │ │ ├── s4.pgm │ │ ├── s40.pgm │ │ ├── s5.pgm │ │ ├── s6.pgm │ │ ├── s7.pgm │ │ ├── s8.pgm │ │ ├── s9.pgm │ │ └── trevor.pgm │ ├── face1 │ │ ├── april.pgm │ │ ├── s1.pgm │ │ ├── s10.pgm │ │ ├── s11.pgm │ │ ├── s12.pgm │ │ ├── s13.pgm │ │ ├── s14.pgm │ │ ├── s15.pgm │ │ ├── s16.pgm │ │ ├── s17.pgm │ │ ├── s18.pgm │ │ ├── s19.pgm │ │ ├── s2.pgm │ │ ├── s20.pgm │ │ ├── s21.pgm │ │ ├── s22.pgm │ │ ├── s23.pgm │ │ ├── s24.pgm │ │ ├── s25.pgm │ │ ├── s26.pgm │ │ ├── s27.pgm │ │ ├── s28.pgm │ │ ├── s29.pgm │ │ ├── s3.pgm │ │ ├── s30.pgm │ │ ├── s31.pgm │ │ ├── s32.pgm │ │ ├── s33.pgm │ │ ├── s34.pgm │ │ ├── s35.pgm │ │ ├── s36.pgm │ │ ├── s37.pgm │ │ ├── s38.pgm │ │ ├── s39.pgm │ │ ├── s4.pgm │ │ ├── s40.pgm │ │ ├── s5.pgm │ │ ├── s6.pgm │ │ ├── s7.pgm │ │ ├── s8.pgm │ │ ├── s9.pgm │ │ └── trevor.pgm │ ├── face2 │ │ ├── april.pgm │ │ ├── s1.pgm │ │ ├── s10.pgm │ │ ├── s11.pgm │ │ ├── s12.pgm │ │ ├── s13.pgm │ │ ├── s14.pgm │ │ ├── s15.pgm │ │ ├── s16.pgm │ │ ├── s17.pgm │ │ ├── s18.pgm │ │ ├── s19.pgm │ │ ├── s2.pgm │ │ ├── s20.pgm │ │ ├── s21.pgm │ │ ├── s22.pgm │ │ ├── s23.pgm │ │ ├── s24.pgm │ │ ├── s25.pgm │ │ ├── s26.pgm │ │ ├── s27.pgm │ │ ├── s28.pgm │ │ ├── s29.pgm │ │ ├── s3.pgm │ │ ├── s30.pgm │ │ ├── s31.pgm │ │ ├── s32.pgm │ │ ├── s33.pgm │ │ ├── s34.pgm │ │ ├── s35.pgm │ │ ├── s36.pgm │ │ ├── s37.pgm │ │ ├── s38.pgm │ │ ├── s39.pgm │ │ ├── s4.pgm │ │ ├── s40.pgm │ │ ├── s5.pgm │ │ ├── s6.pgm │ │ ├── s7.pgm │ │ ├── s8.pgm │ │ ├── s9.pgm │ │ └── trevor.pgm │ └── face3 │ │ ├── s30.pgm │ │ └── trevor.pgm ├── mean.jpg ├── model │ ├── A.xml │ ├── EigenImage.xml │ ├── eigen0.pgm │ ├── eigen1.pgm │ ├── eigen10.pgm │ ├── eigen2.pgm │ ├── eigen3.pgm │ ├── eigen4.pgm │ ├── eigen5.pgm │ ├── eigen6.pgm │ ├── eigen7.pgm │ ├── eigen8.pgm │ ├── eigen9.pgm │ └── face │ │ ├── april.xml │ │ ├── s1.xml │ │ ├── s10.xml │ │ ├── s11.xml │ │ ├── s12.xml │ │ ├── s13.xml │ │ ├── s14.xml │ │ ├── s15.xml │ │ ├── s16.xml │ │ ├── s17.xml │ │ ├── s18.xml │ │ ├── s19.xml │ │ ├── s2.xml │ │ ├── s20.xml │ │ ├── s21.xml │ │ ├── s22.xml │ │ ├── s23.xml │ │ ├── s24.xml │ │ ├── s25.xml │ │ ├── s26.xml │ │ ├── s27.xml │ │ ├── s28.xml │ │ ├── s29.xml │ │ ├── s3.xml │ │ ├── s30.xml │ │ ├── s31.xml │ │ ├── s32.xml │ │ ├── s33.xml │ │ ├── s34.xml │ │ ├── s35.xml │ │ ├── s36.xml │ │ ├── s37.xml │ │ ├── s38.xml │ │ ├── s39.xml │ │ ├── s4.xml │ │ ├── s40.xml │ │ ├── s5.xml │ │ ├── s6.xml │ │ ├── s7.xml │ │ ├── s8.xml │ │ ├── s9.xml │ │ └── trevor.xml ├── rawface │ ├── att_face │ │ ├── README │ │ ├── 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 │ └── my_face │ │ ├── april │ │ ├── 0.jpg │ │ ├── IMG_0241.JPG │ │ └── avatar.jpg │ │ └── trevor │ │ ├── 0.jpg │ │ ├── IMG_0166.JPG │ │ └── IMG_0224.JPG ├── rawtestdata │ ├── april │ │ └── 0.jpg │ └── trevor │ │ └── 0.jpg └── testdata │ └── april.pgm ├── mytest ├── .DS_Store ├── CMakeCache.txt ├── CMakeFiles │ ├── 2.8.12.2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ ├── mytest.dir │ │ ├── CXX.includecache │ │ ├── DependInfo.cmake │ │ ├── att.cpp.o │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── facelibrary.cpp.o │ │ ├── flags.make │ │ ├── link.txt │ │ ├── mytest.cpp.o │ │ └── progress.make │ └── progress.marks ├── CMakeLists.txt ├── Makefile ├── att.cpp ├── att.h ├── cmake_install.cmake ├── facelibrary.cpp ├── facelibrary.h ├── mytest └── mytest.cpp ├── mytrain ├── CMakeCache.txt ├── CMakeFiles │ ├── 2.8.12.2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ ├── mytrain.dir │ │ ├── CXX.includecache │ │ ├── DependInfo.cmake │ │ ├── att.cpp.o │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── eigenface.cpp.o │ │ ├── facelibrary.cpp.o │ │ ├── flags.make │ │ ├── link.txt │ │ └── progress.make │ └── progress.marks ├── CMakeLists.txt ├── Makefile ├── att.cpp ├── att.h ├── cmake_install.cmake ├── eigenface.cpp ├── facelibrary.cpp ├── facelibrary.h └── mytrain └── pic ├── .DS_Store ├── 31.tiff ├── 310.tiff ├── 32.tiff ├── 33.tiff ├── 34.tiff ├── 35.tiff ├── 36.tiff ├── 37.tiff ├── 38.tiff ├── 39.tiff ├── avatar.jpg ├── dstimg.jpg ├── mean.jpg ├── pre1.tiff ├── pre2.tiff ├── pre3.tiff └── result.tiff /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Resource/dstimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/dstimg.jpg -------------------------------------------------------------------------------- /Resource/facelibrary/face/april.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/april.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s1.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s10.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s11.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s11.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s12.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s12.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s13.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s13.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s14.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s14.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s15.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s15.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s16.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s16.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s17.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s17.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s18.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s18.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s19.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s19.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s2.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s20.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s20.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s21.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s21.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s22.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s22.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s23.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s23.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s24.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s24.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s25.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s25.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s26.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s26.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s27.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s27.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s28.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s28.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s29.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s29.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s3.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s30.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s30.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s31.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s31.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s32.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s32.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s33.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s33.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s34.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s34.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s35.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s35.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s36.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s36.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s37.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s37.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s38.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s38.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s39.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s39.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s4.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s40.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s40.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s5.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s6.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s7.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s8.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/s9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/s9.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face/trevor.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face/trevor.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/april.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/april.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s1.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s10.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s11.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s11.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s12.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s12.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s13.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s13.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s14.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s14.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s15.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s15.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s16.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s16.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s17.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s17.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s18.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s18.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s19.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s19.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s2.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s20.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s20.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s21.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s21.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s22.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s22.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s23.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s23.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s24.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s24.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s25.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s25.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s26.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s26.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s27.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s27.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s28.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s28.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s29.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s29.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s3.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s30.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s30.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s31.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s31.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s32.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s32.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s33.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s33.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s34.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s34.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s35.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s35.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s36.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s36.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s37.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s37.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s38.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s38.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s39.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s39.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s4.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s40.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s40.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s5.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s6.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s7.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s8.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/s9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/s9.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face1/trevor.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face1/trevor.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/april.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/april.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s1.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s10.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s11.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s11.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s12.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s12.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s13.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s13.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s14.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s14.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s15.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s15.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s16.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s16.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s17.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s17.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s18.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s18.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s19.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s19.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s2.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s20.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s20.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s21.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s21.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s22.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s22.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s23.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s23.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s24.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s24.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s25.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s25.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s26.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s26.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s27.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s27.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s28.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s28.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s29.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s29.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s3.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s30.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s30.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s31.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s31.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s32.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s32.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s33.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s33.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s34.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s34.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s35.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s35.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s36.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s36.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s37.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s37.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s38.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s38.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s39.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s39.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s4.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s40.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s40.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s5.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s6.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s7.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s8.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/s9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/s9.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face2/trevor.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face2/trevor.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face3/s30.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face3/s30.pgm -------------------------------------------------------------------------------- /Resource/facelibrary/face3/trevor.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/facelibrary/face3/trevor.pgm -------------------------------------------------------------------------------- /Resource/mean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/mean.jpg -------------------------------------------------------------------------------- /Resource/model/eigen0.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen0.pgm -------------------------------------------------------------------------------- /Resource/model/eigen1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen1.pgm -------------------------------------------------------------------------------- /Resource/model/eigen10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen10.pgm -------------------------------------------------------------------------------- /Resource/model/eigen2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen2.pgm -------------------------------------------------------------------------------- /Resource/model/eigen3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen3.pgm -------------------------------------------------------------------------------- /Resource/model/eigen4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen4.pgm -------------------------------------------------------------------------------- /Resource/model/eigen5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen5.pgm -------------------------------------------------------------------------------- /Resource/model/eigen6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen6.pgm -------------------------------------------------------------------------------- /Resource/model/eigen7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen7.pgm -------------------------------------------------------------------------------- /Resource/model/eigen8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen8.pgm -------------------------------------------------------------------------------- /Resource/model/eigen9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/model/eigen9.pgm -------------------------------------------------------------------------------- /Resource/model/face/april.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 5.1656239780166633e+06 9.3993668899290841e+06 7.8668036956669251e+06 9 | 8.1182080947637064e+06 9.2328992366144489e+06 8.0086809154688660e+06 10 | 7.4271748697002092e+06 8.3719447020206526e+06 7.3861522076965487e+06 11 | 6.9610185909371553e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.5539522793446239e+06 8.7030296310855150e+06 7.9761798722645482e+06 9 | 7.9332932591265179e+06 1.0572073924508557e+07 8.1826717160340967e+06 10 | 7.7990306546371561e+06 8.9227445574174002e+06 6.6909702159046931e+06 11 | 7.7102562135118265e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.3902076159698889e+06 8.2337181731437966e+06 8.2156246888841549e+06 9 | 8.5462199014490116e+06 9.9636069287421294e+06 7.9810866605337812e+06 10 | 7.4664931288547246e+06 9.0630286250842959e+06 6.8601565622857967e+06 11 | 7.3173246951821307e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.7901146483254507e+06 8.3123846490760176e+06 7.2412209052143088e+06 9 | 8.3672514206267474e+06 9.7941991442974824e+06 8.2257320965401148e+06 10 | 7.9231525850420464e+06 8.8178474236900695e+06 6.6105924189373441e+06 11 | 7.4650945635298621e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.8909614345249897e+06 8.8495053309794161e+06 8.2781122096473370e+06 9 | 8.2757717790549248e+06 1.0091029217108820e+07 8.2839788928163815e+06 10 | 7.8212860844076406e+06 9.0094371169593520e+06 7.0559866324561629e+06 11 | 7.4330546761440383e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.9595605401574718e+06 8.6084706835130341e+06 8.1416190725451866e+06 9 | 8.6103608994911760e+06 1.0073743084437659e+07 8.1503010342752254e+06 10 | 7.8596554929663315e+06 8.6612870932398234e+06 7.2285980671621338e+06 11 | 7.4986905983254146e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s14.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.4766901046153093e+06 8.5361027346459478e+06 7.2430160888636606e+06 9 | 8.2049070229202975e+06 9.5837145090954322e+06 8.1017768328094855e+06 10 | 7.8166089905326739e+06 8.7445883671648037e+06 7.0185551449501133e+06 11 | 7.4348620786264176e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s15.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.0666529350770842e+06 7.8136329741759561e+06 7.6399810609432124e+06 9 | 8.5229304462141301e+06 9.9937764370442983e+06 8.4917235489915181e+06 10 | 8.0985073774653198e+06 9.0200234912612569e+06 7.1945653941706624e+06 11 | 7.2377263085061600e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s16.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.8042903677935107e+06 9.4659224047352485e+06 7.6388607153097671e+06 9 | 8.9396145498725455e+06 1.0316557186038909e+07 8.2400711131173735e+06 10 | 7.8926781410126900e+06 8.6670899305301718e+06 6.7153258979016328e+06 11 | 7.3431976706672814e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.5864902457053140e+06 9.6132483096169550e+06 8.0092455930644227e+06 9 | 8.7450863358054087e+06 9.7540889059044831e+06 8.2725512913779290e+06 10 | 7.5865416720002685e+06 9.1336684848100021e+06 7.0943401431924840e+06 11 | 7.3423893983949963e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s18.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.4359744532360025e+06 8.2137149416035619e+06 7.9364547556392662e+06 9 | 8.2331738342084354e+06 9.7955985820618384e+06 8.7043393717485331e+06 10 | 7.7948263376014028e+06 8.6632475227354039e+06 6.7937137320281360e+06 11 | 7.3583008480380885e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.6612162375935251e+06 8.4770050061665867e+06 7.6754131904966068e+06 9 | 8.9326906227487177e+06 1.0236842961594921e+07 8.4159829019599073e+06 10 | 7.9256088601266174e+06 9.0708118910327367e+06 7.1310512351356121e+06 11 | 7.2449051731426846e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.2374843368711546e+06 8.6726825326671600e+06 7.3648417842264753e+06 9 | 8.0981872006996833e+06 9.9683654523605965e+06 8.2990746529860515e+06 10 | 7.5016222947205771e+06 8.8683914148418084e+06 7.4618830407669824e+06 11 | 8.1328938983254852e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s20.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.5931037643625271e+06 7.7351482623984404e+06 7.7310881949100280e+06 9 | 8.6516455620883815e+06 9.9987455328424796e+06 8.8683439240173455e+06 10 | 7.3703743495496912e+06 8.2256628140464574e+06 6.8781740982094835e+06 11 | 7.3970386946668755e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s21.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.7464273215031568e+06 8.4655379754121900e+06 8.1983721638500011e+06 9 | 8.6163945475281142e+06 9.5122410509161670e+06 8.7147216213595141e+06 10 | 7.8242258868676666e+06 9.0402317158086412e+06 6.8908990070696231e+06 11 | 7.5897491435421035e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s22.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.1123037189838197e+06 8.1705680784099260e+06 7.5675975183423422e+06 9 | 8.8142915933787227e+06 9.5133784972155467e+06 8.3082976777660148e+06 10 | 7.6288133134326562e+06 8.9763558902633507e+06 6.8081212725030640e+06 11 | 7.2853321473069573e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s23.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.7033119078071211e+06 8.6078581366878692e+06 7.8389066393804392e+06 9 | 8.5623628327019569e+06 9.7818647448878251e+06 8.4032038084956445e+06 10 | 7.7035446236418132e+06 8.9532008160629366e+06 6.8359855423034970e+06 11 | 7.1717919187102662e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s24.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 5.3384411322292117e+06 8.6653952793625519e+06 8.1902642978557656e+06 9 | 8.2665322751574824e+06 1.0444170143481402e+07 8.3248367373522790e+06 10 | 7.6145394512441726e+06 9.0299742740654107e+06 7.0592824093218474e+06 11 | 7.5276528086649701e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.9167767576527856e+06 8.2514464566449234e+06 7.7281622657785611e+06 9 | 8.4480443371632397e+06 9.7174354150870088e+06 8.2613882902076477e+06 10 | 7.8909368598603969e+06 8.9250498183162082e+06 7.1321343694700114e+06 11 | 7.5713226372664077e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s26.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 8.1178069471606249e+06 8.6852331658907197e+06 7.6363018383275289e+06 9 | 8.5795535854994059e+06 9.7550603503209911e+06 8.3754864289806057e+06 10 | 7.8563705688755913e+06 8.9828258879632372e+06 7.2527091657387950e+06 11 | 7.2906836832061829e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s27.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.7023622947965106e+06 8.2244381192339417e+06 7.8733273196609952e+06 9 | 8.7265995379127376e+06 1.0281819149690138e+07 8.0077130940660983e+06 10 | 7.9949698792340467e+06 8.8964632743892763e+06 7.3289744168185005e+06 11 | 7.5059674039415037e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s28.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.6770060406214586e+06 8.6615126184433959e+06 7.4924269130902989e+06 9 | 8.2734141675759545e+06 9.5874207471898217e+06 8.0733614536797544e+06 10 | 7.7582835673117526e+06 8.5830980384114124e+06 6.8781575321887759e+06 11 | 7.3446439545975933e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s29.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.2063955052322550e+06 8.2613376085510505e+06 7.9615647284543794e+06 9 | 8.5647953729879223e+06 9.7383389576952104e+06 8.2288892011899883e+06 10 | 8.2698048721425300e+06 9.1427664154294450e+06 7.0159568598116748e+06 11 | 7.5351107623212719e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.9386759331211476e+06 8.0912263476687456e+06 8.0117617369904928e+06 9 | 8.4920536968293190e+06 9.7455314203614015e+06 8.3705231556170210e+06 10 | 7.8080882610355914e+06 8.7854837871739585e+06 7.0753745307532232e+06 11 | 7.4442442373453304e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s30.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.2778600286741508e+06 7.7066398349518152e+06 8.0425150008913791e+06 9 | 8.1595560537580047e+06 9.7634775602339450e+06 8.4830872846714668e+06 10 | 8.0638979592201309e+06 8.8963609686755259e+06 7.0138793912089840e+06 11 | 7.4684406027422287e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s31.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 8.0134134538555210e+06 9.0693108056064881e+06 8.0830213699172372e+06 9 | 8.4407553212469351e+06 9.4774366392542925e+06 8.4887980174825881e+06 10 | 7.8951753237335198e+06 8.7346480950060654e+06 7.1957129997228514e+06 11 | 7.7031002998655122e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s32.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.0626284516007993e+06 7.6305555386123108e+06 7.6383838079978367e+06 9 | 9.3443924869960584e+06 9.8071204452696647e+06 8.5229047150700931e+06 10 | 7.6265376636899738e+06 8.9100370218655579e+06 7.3906516499261204e+06 11 | 7.3340046592855919e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s33.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 5.7105827361796098e+06 9.0736322702902816e+06 8.2958754364329148e+06 9 | 8.6876736573737711e+06 9.2826285955458805e+06 8.6050245770944115e+06 10 | 8.1713269792733118e+06 8.7001127334048711e+06 6.9562827590681231e+06 11 | 7.6408975050285077e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s34.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.3059675542086558e+06 7.8215814430160606e+06 7.9508239462798079e+06 9 | 9.3677977306425311e+06 1.0243113598986752e+07 8.0519295813004291e+06 10 | 7.9869746352093229e+06 8.2779363979301872e+06 7.1473777136449264e+06 11 | 7.7240596241372721e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s35.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.8564981125129433e+06 8.4671937420452628e+06 8.1148473448604345e+06 9 | 8.5395337686917745e+06 9.7980223292909712e+06 8.1982262118668798e+06 10 | 7.8797347214538986e+06 8.7220965549953822e+06 6.8577017259058198e+06 11 | 7.5244220880301176e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s36.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.1620502794276811e+06 9.3044458285789229e+06 7.6929864119325336e+06 9 | 9.0536596792463586e+06 1.0171119600283135e+07 8.7581249914125036e+06 10 | 7.7470633237015391e+06 9.1995254915372320e+06 6.9226680446758512e+06 11 | 7.6515124283838142e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s37.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.6938569240825465e+06 8.8681462695524674e+06 7.4829109117453117e+06 9 | 8.0945962897706535e+06 9.6105304845790397e+06 8.1118396438679965e+06 10 | 7.7251939466111427e+06 8.6899760665315017e+06 7.0032947801530771e+06 11 | 7.2254387805904169e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s38.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.5943337930573542e+06 9.0538441950308010e+06 7.9498595005245870e+06 9 | 8.3676944614254460e+06 1.0143602772074211e+07 8.0988599533705749e+06 10 | 7.9666901314844955e+06 8.6090603761546798e+06 6.9727476479325723e+06 11 | 7.1861165785488533e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s39.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.8277171477160444e+06 7.6275927537972266e+06 7.7763847571352972e+06 9 | 8.3354492437628089e+06 9.5005403155469317e+06 8.0347756423519859e+06 10 | 7.7995482004583701e+06 8.8878504750118647e+06 6.9846806388245588e+06 11 | 7.4713687251203554e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.6399485637588184e+06 8.7226585718763825e+06 7.9999173258959735e+06 9 | 8.6167805547565334e+06 1.0302753264805757e+07 8.3359390279826801e+06 10 | 7.7623922297628578e+06 8.6892712804101277e+06 6.9604081567195002e+06 11 | 7.3004983077771915e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s40.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.5308944135089554e+06 7.9630839238856668e+06 8.1155435620881673e+06 9 | 8.1074041269021034e+06 9.7753945555117410e+06 8.4193623689946774e+06 10 | 7.6651305640854798e+06 8.9367998824822884e+06 6.9361640102585061e+06 11 | 7.5034027245069044e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.8585117054535048e+06 8.4064403937924039e+06 8.0379218852782911e+06 9 | 8.3786436835129680e+06 9.8664697234080825e+06 8.6620848045427874e+06 10 | 7.6769725589398053e+06 8.8543385868536327e+06 6.9622527385398112e+06 11 | 7.3577825477847494e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.4352174041036582e+06 7.7693149402622757e+06 8.2456362325967681e+06 9 | 8.4288852557708863e+06 9.9736072665267847e+06 8.4453907988904510e+06 10 | 7.8083585924549019e+06 8.6723465692564175e+06 7.0281995623887880e+06 11 | 7.5129920930207232e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.8793960477603348e+06 8.9036381979938354e+06 7.3350052206483521e+06 9 | 8.9217977768177371e+06 9.7647826017808039e+06 8.3839926250273464e+06 10 | 7.7837544556971313e+06 9.1468134751922693e+06 6.8303526500088470e+06 11 | 7.6838554499993287e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 6.3271047812018357e+06 7.2432649851425281e+06 8.0043560102836201e+06 9 | 8.7096247483096756e+06 9.7944427834161557e+06 7.9484263951475723e+06 10 | 7.6095155713645834e+06 9.2157899631683249e+06 7.0165052599930111e+06 11 | 7.3725683777642855e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/s9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.6801278264693432e+06 8.2171334577617664e+06 8.1672409594731210e+06 9 | 8.3514961268059537e+06 9.9082473639846854e+06 8.2679574218040854e+06 10 | 7.7408700362079386e+06 9.1922551083017457e+06 7.1406500811407762e+06 11 | 7.4795555782011403e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/model/face/trevor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 5 | 1 6 |
d
7 | 8 | 7.2151021456680689e+06 8.7897343355972655e+06 8.3119571385785192e+06 9 | 9.3097700752639454e+06 9.2929079346188437e+06 7.8056229103105674e+06 10 | 7.5720365839090161e+06 8.7665774821575619e+06 6.6692771899802862e+06 11 | 7.6524923040015399e+06
12 |
13 | -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s1/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s1/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s10/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s10/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s11/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s11/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s12/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s12/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s13/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s13/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s14/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s14/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s15/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s15/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s16/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s16/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s17/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s17/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s18/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s18/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s19/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s19/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s2/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s2/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s20/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s20/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s21/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s21/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s22/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s22/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s23/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s23/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s24/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s24/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s25/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s25/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s26/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s26/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s27/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s27/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s28/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s28/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s29/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s29/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s3/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s3/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s30/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s30/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s31/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s31/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s32/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s32/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s33/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s33/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s34/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s34/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s35/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s35/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s36/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s36/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s37/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s37/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s38/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s38/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s39/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s39/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s4/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s4/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s40/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s40/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s5/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s5/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s6/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s6/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s7/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s7/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s8/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s8/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/1.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/10.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/10.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/2.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/3.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/4.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/5.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/6.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/7.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/7.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/8.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/8.pgm -------------------------------------------------------------------------------- /Resource/rawface/att_face/s9/9.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/att_face/s9/9.pgm -------------------------------------------------------------------------------- /Resource/rawface/my_face/april/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/my_face/april/0.jpg -------------------------------------------------------------------------------- /Resource/rawface/my_face/april/IMG_0241.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/my_face/april/IMG_0241.JPG -------------------------------------------------------------------------------- /Resource/rawface/my_face/april/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/my_face/april/avatar.jpg -------------------------------------------------------------------------------- /Resource/rawface/my_face/trevor/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/my_face/trevor/0.jpg -------------------------------------------------------------------------------- /Resource/rawface/my_face/trevor/IMG_0166.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/my_face/trevor/IMG_0166.JPG -------------------------------------------------------------------------------- /Resource/rawface/my_face/trevor/IMG_0224.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawface/my_face/trevor/IMG_0224.JPG -------------------------------------------------------------------------------- /Resource/rawtestdata/april/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawtestdata/april/0.jpg -------------------------------------------------------------------------------- /Resource/rawtestdata/trevor/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/rawtestdata/trevor/0.jpg -------------------------------------------------------------------------------- /Resource/testdata/april.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/Resource/testdata/april.pgm -------------------------------------------------------------------------------- /mytest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/.DS_Store -------------------------------------------------------------------------------- /mytest/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /mytest/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /mytest/CMakeFiles/2.8.12.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Linux-3.16.0-43-generic") 2 | set(CMAKE_HOST_SYSTEM_NAME "Linux") 3 | set(CMAKE_HOST_SYSTEM_VERSION "3.16.0-43-generic") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") 5 | 6 | 7 | 8 | set(CMAKE_SYSTEM "Linux-3.16.0-43-generic") 9 | set(CMAKE_SYSTEM_NAME "Linux") 10 | set(CMAKE_SYSTEM_VERSION "3.16.0-43-generic") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "FALSE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/2.8.12.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/2.8.12.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /mytest/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /mytest/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 2.8 3 | 4 | # Relative path conversion top directories. 5 | SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/aprilwang/Documents/HW3/mytest") 6 | SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/aprilwang/Documents/HW3/mytest") 7 | 8 | # Force unix paths in dependencies. 9 | SET(CMAKE_FORCE_UNIX_PATHS 1) 10 | 11 | 12 | # The C and CXX include file regular expressions for this directory. 13 | SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") 14 | SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") 15 | SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) 16 | SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) 17 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | /home/aprilwang/Documents/HW3/mytest/CMakeFiles/mytest.dir 2 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/DependInfo.cmake: -------------------------------------------------------------------------------- 1 | # The set of languages for which implicit dependencies are needed: 2 | SET(CMAKE_DEPENDS_LANGUAGES 3 | "CXX" 4 | ) 5 | # The set of files for implicit dependencies of each language: 6 | SET(CMAKE_DEPENDS_CHECK_CXX 7 | "/home/aprilwang/Documents/HW3/mytest/att.cpp" "/home/aprilwang/Documents/HW3/mytest/CMakeFiles/mytest.dir/att.cpp.o" 8 | "/home/aprilwang/Documents/HW3/mytest/facelibrary.cpp" "/home/aprilwang/Documents/HW3/mytest/CMakeFiles/mytest.dir/facelibrary.cpp.o" 9 | "/home/aprilwang/Documents/HW3/mytest/mytest.cpp" "/home/aprilwang/Documents/HW3/mytest/CMakeFiles/mytest.dir/mytest.cpp.o" 10 | ) 11 | SET(CMAKE_CXX_COMPILER_ID "GNU") 12 | 13 | # Targets to which this target links. 14 | SET(CMAKE_TARGET_LINKED_INFO_FILES 15 | ) 16 | 17 | # The include file search paths: 18 | SET(CMAKE_C_TARGET_INCLUDE_PATH 19 | "/usr/local/include/opencv" 20 | "/usr/local/include" 21 | ) 22 | SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) 23 | SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) 24 | SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) 25 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/att.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/mytest.dir/att.cpp.o -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | FILE(REMOVE_RECURSE 2 | "CMakeFiles/mytest.dir/mytest.cpp.o" 3 | "CMakeFiles/mytest.dir/att.cpp.o" 4 | "CMakeFiles/mytest.dir/facelibrary.cpp.o" 5 | "mytest.pdb" 6 | "mytest" 7 | ) 8 | 9 | # Per-language clean rules from dependency scanning. 10 | FOREACH(lang CXX) 11 | INCLUDE(CMakeFiles/mytest.dir/cmake_clean_${lang}.cmake OPTIONAL) 12 | ENDFOREACH(lang) 13 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/facelibrary.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/mytest.dir/facelibrary.cpp.o -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/flags.make: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 2.8 3 | 4 | # compile CXX with /usr/bin/c++ 5 | CXX_FLAGS = -I/usr/local/include/opencv -I/usr/local/include 6 | 7 | CXX_DEFINES = 8 | 9 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/link.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/c++ CMakeFiles/mytest.dir/mytest.cpp.o CMakeFiles/mytest.dir/att.cpp.o CMakeFiles/mytest.dir/facelibrary.cpp.o -o mytest -rdynamic /usr/local/lib/libopencv_videostab.so.3.0.0 /usr/local/lib/libopencv_videoio.so.3.0.0 /usr/local/lib/libopencv_video.so.3.0.0 /usr/local/lib/libopencv_superres.so.3.0.0 /usr/local/lib/libopencv_stitching.so.3.0.0 /usr/local/lib/libopencv_shape.so.3.0.0 /usr/local/lib/libopencv_photo.so.3.0.0 /usr/local/lib/libopencv_objdetect.so.3.0.0 /usr/local/lib/libopencv_ml.so.3.0.0 /usr/local/lib/libopencv_imgproc.so.3.0.0 /usr/local/lib/libopencv_imgcodecs.so.3.0.0 /usr/local/lib/libopencv_highgui.so.3.0.0 /usr/local/lib/libopencv_hal.a /usr/local/lib/libopencv_flann.so.3.0.0 /usr/local/lib/libopencv_features2d.so.3.0.0 /usr/local/lib/libopencv_core.so.3.0.0 /usr/local/lib/libopencv_calib3d.so.3.0.0 /usr/local/lib/libopencv_features2d.so.3.0.0 /usr/local/lib/libopencv_ml.so.3.0.0 /usr/local/lib/libopencv_highgui.so.3.0.0 /usr/local/lib/libopencv_videoio.so.3.0.0 /usr/local/lib/libopencv_imgcodecs.so.3.0.0 /usr/local/lib/libopencv_flann.so.3.0.0 /usr/local/lib/libopencv_video.so.3.0.0 /usr/local/lib/libopencv_imgproc.so.3.0.0 /usr/local/lib/libopencv_core.so.3.0.0 /usr/local/lib/libopencv_hal.a -ldl -lm -lpthread -lrt /usr/local/share/OpenCV/3rdparty/lib/libippicv.a -Wl,-rpath,/usr/local/lib 2 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/mytest.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/CMakeFiles/mytest.dir/mytest.cpp.o -------------------------------------------------------------------------------- /mytest/CMakeFiles/mytest.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 1 2 | CMAKE_PROGRESS_2 = 2 3 | CMAKE_PROGRESS_3 = 3 4 | 5 | -------------------------------------------------------------------------------- /mytest/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /mytest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # cmake needs this line 2 | cmake_minimum_required(VERSION 2.8) 3 | 4 | # Define project name 5 | project(mytest) 6 | 7 | # Find OpenCV, you may need to set OpenCV_DIR variable 8 | # to the absolute path to the directory containing OpenCVConfig.cmake file 9 | # via the command line or GUI 10 | find_package(OpenCV REQUIRED) 11 | 12 | # If the package has been found, several variables will 13 | # be set, you can find the full list with descriptions 14 | # in the OpenCVConfig.cmake file. 15 | # Print some message showing some of them 16 | message(STATUS "OpenCV library status:") 17 | message(STATUS " version: ${OpenCV_VERSION}") 18 | message(STATUS " libraries: ${OpenCV_LIBS}") 19 | message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") 20 | 21 | # Add OpenCV headers location to your include paths 22 | include_directories(${OpenCV_INCLUDE_DIRS}) 23 | 24 | # Declare the executable target built from your sources 25 | add_executable(mytest mytest.cpp att.cpp facelibrary.cpp) 26 | 27 | # Link your application with OpenCV libraries 28 | target_link_libraries(mytest ${OpenCV_LIBS}) 29 | -------------------------------------------------------------------------------- /mytest/att.h: -------------------------------------------------------------------------------- 1 | #include "opencv2/core.hpp" 2 | #include "opencv2/imgproc.hpp" 3 | #include "opencv2/highgui.hpp" 4 | #include "opencv2/videoio.hpp" 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | using namespace cv; 12 | using namespace std; 13 | 14 | class Att 15 | { 16 | public: 17 | Att(); 18 | ~Att(); 19 | void att_pre(string in, string out, int mode); 20 | private: 21 | char* in_src; 22 | char* out_src; 23 | void att_pic(char* file, string in, string out, int num); 24 | void pic_save(Mat img, char* file, string out); 25 | void pic_rect(Mat img, char* file); 26 | void pic_show(Mat img, char* file, string in, string out, int num); 27 | Rect roi; 28 | }; 29 | -------------------------------------------------------------------------------- /mytest/facelibrary.h: -------------------------------------------------------------------------------- 1 | #include "att.h" 2 | #include 3 | struct Face{ 4 | char* name; 5 | CvMat* data; 6 | CvMat* eigen; 7 | }; 8 | 9 | class FaceLibrary{ 10 | public: 11 | FaceLibrary(); 12 | ~FaceLibrary(); 13 | void loadFace(string in); 14 | void getMediaFace(); 15 | void getEigen(); 16 | void saveEigen(string in, int n); 17 | void loadLibrary(string in); 18 | void loadRecFace(string in); 19 | void recFace(int recn); 20 | private: 21 | vector face; 22 | vector rec_face; 23 | CvMat *image_points[1]; 24 | Mat_meanMat; 25 | Mat_covMat; 26 | Mat_sample[100]; 27 | CvMat *covar_mat; 28 | CvMat *mean_mat; 29 | CvMat *eigen_value; 30 | CvMat *eigen_vector; 31 | CvMat *A; 32 | CvMat *eigen_image; 33 | int row; 34 | int col; 35 | int number; 36 | int eigen_number; 37 | }; 38 | -------------------------------------------------------------------------------- /mytest/mytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytest/mytest -------------------------------------------------------------------------------- /mytest/mytest.cpp: -------------------------------------------------------------------------------- 1 | #include "facelibrary.h" 2 | int main(int argc, char* argv[]) { 3 | Att att; 4 | FaceLibrary facelibrary; 5 | 6 | if(argc != 4){ 7 | printf("Parameter Invalid\n"); 8 | return -1; 9 | } 10 | 11 | int facenum = atoi(argv[3]); 12 | 13 | facelibrary.loadLibrary(argv[2]); 14 | facelibrary.loadRecFace(argv[1]); 15 | facelibrary.recFace(facenum); 16 | } 17 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /mytrain/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /mytrain/CMakeFiles/2.8.12.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Linux-3.16.0-57-generic") 2 | set(CMAKE_HOST_SYSTEM_NAME "Linux") 3 | set(CMAKE_HOST_SYSTEM_VERSION "3.16.0-57-generic") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") 5 | 6 | 7 | 8 | set(CMAKE_SYSTEM "Linux-3.16.0-57-generic") 9 | set(CMAKE_SYSTEM_NAME "Linux") 10 | set(CMAKE_SYSTEM_VERSION "3.16.0-57-generic") 11 | set(CMAKE_SYSTEM_PROCESSOR "x86_64") 12 | 13 | set(CMAKE_CROSSCOMPILING "FALSE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/2.8.12.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/2.8.12.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /mytrain/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /mytrain/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 2.8 3 | 4 | # Relative path conversion top directories. 5 | SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/aprilwang/Documents/HW3/mytrain") 6 | SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/aprilwang/Documents/HW3/mytrain") 7 | 8 | # Force unix paths in dependencies. 9 | SET(CMAKE_FORCE_UNIX_PATHS 1) 10 | 11 | 12 | # The C and CXX include file regular expressions for this directory. 13 | SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") 14 | SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") 15 | SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) 16 | SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) 17 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | /home/aprilwang/Documents/HW3/mytrain/CMakeFiles/mytrain.dir 2 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/DependInfo.cmake: -------------------------------------------------------------------------------- 1 | # The set of languages for which implicit dependencies are needed: 2 | SET(CMAKE_DEPENDS_LANGUAGES 3 | "CXX" 4 | ) 5 | # The set of files for implicit dependencies of each language: 6 | SET(CMAKE_DEPENDS_CHECK_CXX 7 | "/home/aprilwang/Documents/HW3/mytrain/att.cpp" "/home/aprilwang/Documents/HW3/mytrain/CMakeFiles/mytrain.dir/att.cpp.o" 8 | "/home/aprilwang/Documents/HW3/mytrain/eigenface.cpp" "/home/aprilwang/Documents/HW3/mytrain/CMakeFiles/mytrain.dir/eigenface.cpp.o" 9 | "/home/aprilwang/Documents/HW3/mytrain/facelibrary.cpp" "/home/aprilwang/Documents/HW3/mytrain/CMakeFiles/mytrain.dir/facelibrary.cpp.o" 10 | ) 11 | SET(CMAKE_CXX_COMPILER_ID "GNU") 12 | 13 | # Targets to which this target links. 14 | SET(CMAKE_TARGET_LINKED_INFO_FILES 15 | ) 16 | 17 | # The include file search paths: 18 | SET(CMAKE_C_TARGET_INCLUDE_PATH 19 | "/usr/local/include/opencv" 20 | "/usr/local/include" 21 | ) 22 | SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) 23 | SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) 24 | SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) 25 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/att.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/mytrain.dir/att.cpp.o -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- 1 | FILE(REMOVE_RECURSE 2 | "CMakeFiles/mytrain.dir/eigenface.cpp.o" 3 | "CMakeFiles/mytrain.dir/att.cpp.o" 4 | "CMakeFiles/mytrain.dir/facelibrary.cpp.o" 5 | "mytrain.pdb" 6 | "mytrain" 7 | ) 8 | 9 | # Per-language clean rules from dependency scanning. 10 | FOREACH(lang CXX) 11 | INCLUDE(CMakeFiles/mytrain.dir/cmake_clean_${lang}.cmake OPTIONAL) 12 | ENDFOREACH(lang) 13 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/eigenface.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/mytrain.dir/eigenface.cpp.o -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/facelibrary.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/CMakeFiles/mytrain.dir/facelibrary.cpp.o -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/flags.make: -------------------------------------------------------------------------------- 1 | # CMAKE generated file: DO NOT EDIT! 2 | # Generated by "Unix Makefiles" Generator, CMake Version 2.8 3 | 4 | # compile CXX with /usr/bin/c++ 5 | CXX_FLAGS = -I/usr/local/include/opencv -I/usr/local/include 6 | 7 | CXX_DEFINES = 8 | 9 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/link.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/c++ CMakeFiles/mytrain.dir/eigenface.cpp.o CMakeFiles/mytrain.dir/att.cpp.o CMakeFiles/mytrain.dir/facelibrary.cpp.o -o mytrain -rdynamic /usr/local/lib/libopencv_videostab.so.3.0.0 /usr/local/lib/libopencv_videoio.so.3.0.0 /usr/local/lib/libopencv_video.so.3.0.0 /usr/local/lib/libopencv_superres.so.3.0.0 /usr/local/lib/libopencv_stitching.so.3.0.0 /usr/local/lib/libopencv_shape.so.3.0.0 /usr/local/lib/libopencv_photo.so.3.0.0 /usr/local/lib/libopencv_objdetect.so.3.0.0 /usr/local/lib/libopencv_ml.so.3.0.0 /usr/local/lib/libopencv_imgproc.so.3.0.0 /usr/local/lib/libopencv_imgcodecs.so.3.0.0 /usr/local/lib/libopencv_highgui.so.3.0.0 /usr/local/lib/libopencv_hal.a /usr/local/lib/libopencv_flann.so.3.0.0 /usr/local/lib/libopencv_features2d.so.3.0.0 /usr/local/lib/libopencv_core.so.3.0.0 /usr/local/lib/libopencv_calib3d.so.3.0.0 /usr/local/lib/libopencv_features2d.so.3.0.0 /usr/local/lib/libopencv_ml.so.3.0.0 /usr/local/lib/libopencv_highgui.so.3.0.0 /usr/local/lib/libopencv_videoio.so.3.0.0 /usr/local/lib/libopencv_imgcodecs.so.3.0.0 /usr/local/lib/libopencv_flann.so.3.0.0 /usr/local/lib/libopencv_video.so.3.0.0 /usr/local/lib/libopencv_imgproc.so.3.0.0 /usr/local/lib/libopencv_core.so.3.0.0 /usr/local/lib/libopencv_hal.a -ldl -lm -lpthread -lrt /usr/local/share/OpenCV/3rdparty/lib/libippicv.a -Wl,-rpath,/usr/local/lib 2 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/mytrain.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 1 2 | CMAKE_PROGRESS_2 = 2 3 | CMAKE_PROGRESS_3 = 3 4 | 5 | -------------------------------------------------------------------------------- /mytrain/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /mytrain/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # cmake needs this line 2 | cmake_minimum_required(VERSION 2.8) 3 | 4 | # Define project name 5 | project(eigenface) 6 | 7 | # Find OpenCV, you may need to set OpenCV_DIR variable 8 | # to the absolute path to the directory containing OpenCVConfig.cmake file 9 | # via the command line or GUI 10 | find_package(OpenCV REQUIRED) 11 | 12 | # If the package has been found, several variables will 13 | # be set, you can find the full list with descriptions 14 | # in the OpenCVConfig.cmake file. 15 | # Print some message showing some of them 16 | message(STATUS "OpenCV library status:") 17 | message(STATUS " version: ${OpenCV_VERSION}") 18 | message(STATUS " libraries: ${OpenCV_LIBS}") 19 | message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") 20 | 21 | # Add OpenCV headers location to your include paths 22 | include_directories(${OpenCV_INCLUDE_DIRS}) 23 | 24 | # Declare the executable target built from your sources 25 | add_executable(mytrain eigenface.cpp att.cpp facelibrary.cpp) 26 | 27 | # Link your application with OpenCV libraries 28 | target_link_libraries(mytrain ${OpenCV_LIBS}) 29 | -------------------------------------------------------------------------------- /mytrain/att.h: -------------------------------------------------------------------------------- 1 | #include "opencv2/core.hpp" 2 | #include "opencv2/imgproc.hpp" 3 | #include "opencv2/highgui.hpp" 4 | #include "opencv2/videoio.hpp" 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | using namespace cv; 12 | using namespace std; 13 | 14 | class Att 15 | { 16 | public: 17 | Att(); 18 | ~Att(); 19 | void att_pre(string in, string out, int mode); 20 | private: 21 | char* in_src; 22 | char* out_src; 23 | void att_pic(char* file, string in, string out, int num); 24 | void pic_save(Mat img, char* file, string out); 25 | void pic_rect(Mat img, char* file); 26 | void pic_show(Mat img, char* file, string in, string out, int num); 27 | Rect roi; 28 | }; 29 | -------------------------------------------------------------------------------- /mytrain/eigenface.cpp: -------------------------------------------------------------------------------- 1 | #include "facelibrary.h" 2 | 3 | int main(int argc, char* argv[]) { 4 | 5 | if(argc!=4){ 6 | printf("Parameters Invalid"); 7 | return -1; 8 | } 9 | 10 | int energy = atoi(argv[1]); 11 | char* folder = argv[2]; 12 | int mode = atoi(argv[3]); 13 | 14 | Att att; 15 | FaceLibrary library; 16 | 17 | int li = 2; 18 | 19 | mode = 1; 20 | 21 | if(mode == 0 || mode == 2 ) { 22 | char* a_src = new char[100]; sprintf(a_src, "%s/rawface/att_face", folder); 23 | char* m_src = new char[100]; sprintf(m_src, "%s/rawface/my_face", folder); 24 | char* o_src = new char[100]; sprintf(o_src, "%s/facelibrary/face%d", folder, li); 25 | cout< 3 | struct Face{ 4 | char* name; 5 | CvMat* data; 6 | }; 7 | 8 | class FaceLibrary{ 9 | public: 10 | FaceLibrary(); 11 | ~FaceLibrary(); 12 | void loadFace(string in); 13 | void getMediaFace(); 14 | void getEigen(); 15 | void saveEigen(string in, int n); 16 | void test(); 17 | private: 18 | vector face; 19 | CvMat *image_points[1]; 20 | Mat_meanMat; 21 | Mat_covMat; 22 | Mat_sample[100]; 23 | CvMat *covar_mat; 24 | CvMat *mean_mat; 25 | CvMat *eigen_value; 26 | CvMat *eigen_vector; 27 | CvMat *A; 28 | CvMat *eigen_image; 29 | int row; 30 | int col; 31 | int number; 32 | }; 33 | -------------------------------------------------------------------------------- /mytrain/mytrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/mytrain/mytrain -------------------------------------------------------------------------------- /pic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/.DS_Store -------------------------------------------------------------------------------- /pic/31.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/31.tiff -------------------------------------------------------------------------------- /pic/310.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/310.tiff -------------------------------------------------------------------------------- /pic/32.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/32.tiff -------------------------------------------------------------------------------- /pic/33.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/33.tiff -------------------------------------------------------------------------------- /pic/34.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/34.tiff -------------------------------------------------------------------------------- /pic/35.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/35.tiff -------------------------------------------------------------------------------- /pic/36.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/36.tiff -------------------------------------------------------------------------------- /pic/37.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/37.tiff -------------------------------------------------------------------------------- /pic/38.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/38.tiff -------------------------------------------------------------------------------- /pic/39.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/39.tiff -------------------------------------------------------------------------------- /pic/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/avatar.jpg -------------------------------------------------------------------------------- /pic/dstimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/dstimg.jpg -------------------------------------------------------------------------------- /pic/mean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/mean.jpg -------------------------------------------------------------------------------- /pic/pre1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/pre1.tiff -------------------------------------------------------------------------------- /pic/pre2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/pre2.tiff -------------------------------------------------------------------------------- /pic/pre3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/pre3.tiff -------------------------------------------------------------------------------- /pic/result.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LittleAprilFool/eigenface/9e413e96b0988cd86b5a580d38ae1a0a13111331/pic/result.tiff --------------------------------------------------------------------------------