deepfashion_full.py 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. dataset_info = dict(
  2. dataset_name='deepfashion_full',
  3. paper_info=dict(
  4. author='Liu, Ziwei and Luo, Ping and Qiu, Shi '
  5. 'and Wang, Xiaogang and Tang, Xiaoou',
  6. title='DeepFashion: Powering Robust Clothes Recognition '
  7. 'and Retrieval with Rich Annotations',
  8. container='Proceedings of IEEE Conference on Computer '
  9. 'Vision and Pattern Recognition (CVPR)',
  10. year='2016',
  11. homepage='http://mmlab.ie.cuhk.edu.hk/projects/'
  12. 'DeepFashion/LandmarkDetection.html',
  13. ),
  14. keypoint_info={
  15. 0:
  16. dict(
  17. name='left collar',
  18. id=0,
  19. color=[255, 255, 255],
  20. type='',
  21. swap='right collar'),
  22. 1:
  23. dict(
  24. name='right collar',
  25. id=1,
  26. color=[255, 255, 255],
  27. type='',
  28. swap='left collar'),
  29. 2:
  30. dict(
  31. name='left sleeve',
  32. id=2,
  33. color=[255, 255, 255],
  34. type='',
  35. swap='right sleeve'),
  36. 3:
  37. dict(
  38. name='right sleeve',
  39. id=3,
  40. color=[255, 255, 255],
  41. type='',
  42. swap='left sleeve'),
  43. 4:
  44. dict(
  45. name='left waistline',
  46. id=0,
  47. color=[255, 255, 255],
  48. type='',
  49. swap='right waistline'),
  50. 5:
  51. dict(
  52. name='right waistline',
  53. id=1,
  54. color=[255, 255, 255],
  55. type='',
  56. swap='left waistline'),
  57. 6:
  58. dict(
  59. name='left hem',
  60. id=2,
  61. color=[255, 255, 255],
  62. type='',
  63. swap='right hem'),
  64. 7:
  65. dict(
  66. name='right hem',
  67. id=3,
  68. color=[255, 255, 255],
  69. type='',
  70. swap='left hem'),
  71. },
  72. skeleton_info={},
  73. joint_weights=[1.] * 8,
  74. sigmas=[])