├── .gitmodules ├── README.md ├── data ├── FLD_full │ ├── test_00000001.jpg │ ├── test_00000002.jpg │ ├── test_00000003.jpg │ ├── test_00000004.jpg │ ├── test_00000005.jpg │ ├── test_00000006.jpg │ ├── test_00000007.jpg │ ├── test_00000008.jpg │ ├── test_00000009.jpg │ ├── test_00000010.jpg │ ├── test_00000011.jpg │ ├── test_00000012.jpg │ ├── test_00000013.jpg │ ├── test_00000014.jpg │ ├── test_00000015.jpg │ ├── test_00000016.jpg │ ├── test_00000017.jpg │ ├── test_00000018.jpg │ ├── test_00000019.jpg │ ├── test_00000020.jpg │ ├── test_00000021.jpg │ ├── test_00000022.jpg │ ├── test_00000023.jpg │ ├── test_00000024.jpg │ ├── test_00000025.jpg │ ├── test_00000026.jpg │ ├── test_00000027.jpg │ ├── test_00000028.jpg │ ├── test_00000029.jpg │ ├── test_00000030.jpg │ ├── test_00000031.jpg │ ├── test_00000032.jpg │ ├── test_00000033.jpg │ ├── test_00000034.jpg │ ├── test_00000035.jpg │ ├── test_00000036.jpg │ ├── test_00000037.jpg │ ├── test_00000038.jpg │ ├── test_00000039.jpg │ ├── test_00000040.jpg │ ├── test_00000041.jpg │ ├── test_00000042.jpg │ ├── test_00000043.jpg │ ├── test_00000044.jpg │ ├── test_00000045.jpg │ ├── test_00000046.jpg │ ├── test_00000047.jpg │ ├── test_00000048.jpg │ ├── test_00000049.jpg │ └── test_00000050.jpg ├── FLD_lower │ ├── test_00000001.jpg │ ├── test_00000002.jpg │ ├── test_00000003.jpg │ ├── test_00000004.jpg │ ├── test_00000005.jpg │ ├── test_00000006.jpg │ ├── test_00000007.jpg │ ├── test_00000008.jpg │ ├── test_00000009.jpg │ ├── test_00000010.jpg │ ├── test_00000011.jpg │ ├── test_00000012.jpg │ ├── test_00000013.jpg │ ├── test_00000014.jpg │ ├── test_00000015.jpg │ ├── test_00000016.jpg │ ├── test_00000017.jpg │ ├── test_00000018.jpg │ ├── test_00000019.jpg │ ├── test_00000020.jpg │ ├── test_00000021.jpg │ ├── test_00000022.jpg │ ├── test_00000023.jpg │ ├── test_00000024.jpg │ ├── test_00000025.jpg │ ├── test_00000026.jpg │ ├── test_00000027.jpg │ ├── test_00000028.jpg │ ├── test_00000029.jpg │ ├── test_00000030.jpg │ ├── test_00000031.jpg │ ├── test_00000032.jpg │ ├── test_00000033.jpg │ ├── test_00000034.jpg │ ├── test_00000035.jpg │ ├── test_00000036.jpg │ ├── test_00000037.jpg │ ├── test_00000038.jpg │ ├── test_00000039.jpg │ ├── test_00000040.jpg │ ├── test_00000041.jpg │ ├── test_00000042.jpg │ ├── test_00000043.jpg │ ├── test_00000044.jpg │ ├── test_00000045.jpg │ ├── test_00000046.jpg │ ├── test_00000047.jpg │ ├── test_00000048.jpg │ ├── test_00000049.jpg │ └── test_00000050.jpg └── FLD_upper │ ├── test_00000001.jpg │ ├── test_00000002.jpg │ ├── test_00000003.jpg │ ├── test_00000004.jpg │ ├── test_00000005.jpg │ ├── test_00000006.jpg │ ├── test_00000007.jpg │ ├── test_00000008.jpg │ ├── test_00000009.jpg │ ├── test_00000010.jpg │ ├── test_00000011.jpg │ ├── test_00000012.jpg │ ├── test_00000013.jpg │ ├── test_00000014.jpg │ ├── test_00000015.jpg │ ├── test_00000016.jpg │ ├── test_00000017.jpg │ ├── test_00000018.jpg │ ├── test_00000019.jpg │ ├── test_00000020.jpg │ ├── test_00000021.jpg │ ├── test_00000022.jpg │ ├── test_00000023.jpg │ ├── test_00000024.jpg │ ├── test_00000025.jpg │ ├── test_00000026.jpg │ ├── test_00000027.jpg │ ├── test_00000028.jpg │ ├── test_00000029.jpg │ ├── test_00000030.jpg │ ├── test_00000031.jpg │ ├── test_00000032.jpg │ ├── test_00000033.jpg │ ├── test_00000034.jpg │ ├── test_00000035.jpg │ ├── test_00000036.jpg │ ├── test_00000037.jpg │ ├── test_00000038.jpg │ ├── test_00000039.jpg │ ├── test_00000040.jpg │ ├── test_00000041.jpg │ ├── test_00000042.jpg │ ├── test_00000043.jpg │ ├── test_00000044.jpg │ ├── test_00000045.jpg │ ├── test_00000046.jpg │ ├── test_00000047.jpg │ ├── test_00000048.jpg │ ├── test_00000049.jpg │ └── test_00000050.jpg ├── misc ├── demo.gif └── demo_teaser.jpg ├── models ├── FLD_full │ ├── cascade.prototxt │ └── stage1.prototxt ├── FLD_lower │ ├── cascade.prototxt │ └── stage1.prototxt └── FLD_upper │ ├── cascade.prototxt │ └── stage1.prototxt └── scripts ├── demo.m ├── pipeline_forword.m ├── pipeline_init.m ├── pipeline_release.m └── pipeline_show_results.m /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/README.md -------------------------------------------------------------------------------- /data/FLD_full/test_00000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000001.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000002.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000003.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000004.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000005.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000006.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000007.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000008.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000009.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000010.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000011.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000012.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000013.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000014.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000015.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000016.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000017.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000018.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000019.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000020.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000021.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000022.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000023.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000024.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000025.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000026.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000027.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000028.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000029.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000030.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000031.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000032.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000033.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000034.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000035.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000036.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000037.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000038.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000039.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000040.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000041.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000042.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000043.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000044.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000045.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000046.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000047.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000048.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000049.jpg -------------------------------------------------------------------------------- /data/FLD_full/test_00000050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_full/test_00000050.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000001.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000002.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000003.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000004.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000005.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000006.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000007.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000008.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000009.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000010.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000011.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000012.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000013.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000014.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000015.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000016.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000017.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000018.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000019.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000020.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000021.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000022.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000023.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000024.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000025.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000026.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000027.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000028.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000029.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000030.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000031.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000032.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000033.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000034.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000035.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000036.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000037.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000038.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000039.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000040.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000041.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000042.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000043.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000044.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000045.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000046.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000047.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000048.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000049.jpg -------------------------------------------------------------------------------- /data/FLD_lower/test_00000050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_lower/test_00000050.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000001.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000002.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000003.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000004.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000005.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000006.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000007.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000008.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000009.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000010.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000011.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000012.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000013.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000014.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000015.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000016.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000017.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000018.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000019.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000020.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000021.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000022.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000023.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000024.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000025.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000026.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000027.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000028.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000029.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000030.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000031.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000032.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000033.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000034.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000035.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000036.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000037.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000038.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000039.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000040.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000041.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000042.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000043.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000044.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000045.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000046.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000047.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000048.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000049.jpg -------------------------------------------------------------------------------- /data/FLD_upper/test_00000050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/data/FLD_upper/test_00000050.jpg -------------------------------------------------------------------------------- /misc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/misc/demo.gif -------------------------------------------------------------------------------- /misc/demo_teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/misc/demo_teaser.jpg -------------------------------------------------------------------------------- /models/FLD_full/cascade.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/models/FLD_full/cascade.prototxt -------------------------------------------------------------------------------- /models/FLD_full/stage1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/models/FLD_full/stage1.prototxt -------------------------------------------------------------------------------- /models/FLD_lower/cascade.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/models/FLD_lower/cascade.prototxt -------------------------------------------------------------------------------- /models/FLD_lower/stage1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/models/FLD_lower/stage1.prototxt -------------------------------------------------------------------------------- /models/FLD_upper/cascade.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/models/FLD_upper/cascade.prototxt -------------------------------------------------------------------------------- /models/FLD_upper/stage1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/models/FLD_upper/stage1.prototxt -------------------------------------------------------------------------------- /scripts/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/scripts/demo.m -------------------------------------------------------------------------------- /scripts/pipeline_forword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/scripts/pipeline_forword.m -------------------------------------------------------------------------------- /scripts/pipeline_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/scripts/pipeline_init.m -------------------------------------------------------------------------------- /scripts/pipeline_release.m: -------------------------------------------------------------------------------- 1 | function [ ] = pipeline_release( ) 2 | caffe.reset_all(); 3 | end 4 | 5 | -------------------------------------------------------------------------------- /scripts/pipeline_show_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuziwei7/fashion-landmarks/HEAD/scripts/pipeline_show_results.m --------------------------------------------------------------------------------