├── .gitignore ├── LICENSE ├── ReadMe.md ├── data_generation ├── Bodies │ ├── Readme.md │ ├── f_smpl_template.obj │ ├── f_smpl_template_TA_pose.obj │ └── f_smpl_template_headphones.obj ├── Patterns │ ├── basic tee │ │ ├── jacket.json │ │ ├── jacket_hood.json │ │ ├── jacket_hood_sleeveless.json │ │ ├── jacket_sleeveless.json │ │ ├── tee.json │ │ ├── tee_hood.json │ │ └── tee_sleeveless.json │ ├── combos │ │ ├── dress.json │ │ ├── dress_sleeveless.json │ │ ├── jumpsuit.json │ │ ├── jumpsuit_sleeveless.json │ │ ├── wb_dress_sleeveless.json │ │ └── wb_jumpsuit_sleeveless.json │ ├── pants │ │ ├── pants_flare.json │ │ ├── pants_flare_TA_pose.json │ │ ├── pants_straight_sides.json │ │ ├── pants_straight_sides_TA_pose.json │ │ └── wb_pants_straight.json │ └── skirts │ │ ├── skirt_2_panels.json │ │ ├── skirt_2_panels_smaller_front.json │ │ ├── skirt_4_panels.json │ │ ├── skirt_8_panels.json │ │ └── skirt_waistband.json ├── Sim_props │ ├── Headphones_yellow.json │ ├── TA_body_green.json │ ├── T_body_blue_low_res.json │ ├── T_body_green_intersect_tolerance.json │ └── T_body_tomato.json ├── datagenerator.py ├── datascan.py ├── datasim.py ├── datasim_runner.sh └── garmentviewer.py ├── docs ├── Installation.md ├── Running_generation.md ├── Setting_up_generator.md └── template_spec_with_comments.json ├── img ├── data_samples.png └── render_scene_example.png ├── packages ├── customconfig.py ├── mayaqltools │ ├── __init__.py │ ├── garmentUI.py │ ├── mayascene.py │ ├── qualothwrapper.py │ ├── scan_imitation.py │ ├── simulation.py │ └── utils.py └── pattern │ ├── __init__.py │ ├── core.py │ ├── rotation.py │ └── wrappers.py ├── system.template.json └── utility scripts ├── all_data_has_all_files.py ├── crashes_to_unprocessed.py ├── gather_renders.py ├── maya_segmentaion_viz.py └── merge_datasets.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/ReadMe.md -------------------------------------------------------------------------------- /data_generation/Bodies/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Bodies/Readme.md -------------------------------------------------------------------------------- /data_generation/Bodies/f_smpl_template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Bodies/f_smpl_template.obj -------------------------------------------------------------------------------- /data_generation/Bodies/f_smpl_template_TA_pose.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Bodies/f_smpl_template_TA_pose.obj -------------------------------------------------------------------------------- /data_generation/Bodies/f_smpl_template_headphones.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Bodies/f_smpl_template_headphones.obj -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/jacket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/jacket.json -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/jacket_hood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/jacket_hood.json -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/jacket_hood_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/jacket_hood_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/jacket_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/jacket_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/tee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/tee.json -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/tee_hood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/tee_hood.json -------------------------------------------------------------------------------- /data_generation/Patterns/basic tee/tee_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/basic tee/tee_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/combos/dress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/combos/dress.json -------------------------------------------------------------------------------- /data_generation/Patterns/combos/dress_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/combos/dress_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/combos/jumpsuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/combos/jumpsuit.json -------------------------------------------------------------------------------- /data_generation/Patterns/combos/jumpsuit_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/combos/jumpsuit_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/combos/wb_dress_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/combos/wb_dress_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/combos/wb_jumpsuit_sleeveless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/combos/wb_jumpsuit_sleeveless.json -------------------------------------------------------------------------------- /data_generation/Patterns/pants/pants_flare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/pants/pants_flare.json -------------------------------------------------------------------------------- /data_generation/Patterns/pants/pants_flare_TA_pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/pants/pants_flare_TA_pose.json -------------------------------------------------------------------------------- /data_generation/Patterns/pants/pants_straight_sides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/pants/pants_straight_sides.json -------------------------------------------------------------------------------- /data_generation/Patterns/pants/pants_straight_sides_TA_pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/pants/pants_straight_sides_TA_pose.json -------------------------------------------------------------------------------- /data_generation/Patterns/pants/wb_pants_straight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/pants/wb_pants_straight.json -------------------------------------------------------------------------------- /data_generation/Patterns/skirts/skirt_2_panels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/skirts/skirt_2_panels.json -------------------------------------------------------------------------------- /data_generation/Patterns/skirts/skirt_2_panels_smaller_front.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/skirts/skirt_2_panels_smaller_front.json -------------------------------------------------------------------------------- /data_generation/Patterns/skirts/skirt_4_panels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/skirts/skirt_4_panels.json -------------------------------------------------------------------------------- /data_generation/Patterns/skirts/skirt_8_panels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/skirts/skirt_8_panels.json -------------------------------------------------------------------------------- /data_generation/Patterns/skirts/skirt_waistband.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Patterns/skirts/skirt_waistband.json -------------------------------------------------------------------------------- /data_generation/Sim_props/Headphones_yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Sim_props/Headphones_yellow.json -------------------------------------------------------------------------------- /data_generation/Sim_props/TA_body_green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Sim_props/TA_body_green.json -------------------------------------------------------------------------------- /data_generation/Sim_props/T_body_blue_low_res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Sim_props/T_body_blue_low_res.json -------------------------------------------------------------------------------- /data_generation/Sim_props/T_body_green_intersect_tolerance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Sim_props/T_body_green_intersect_tolerance.json -------------------------------------------------------------------------------- /data_generation/Sim_props/T_body_tomato.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/Sim_props/T_body_tomato.json -------------------------------------------------------------------------------- /data_generation/datagenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/datagenerator.py -------------------------------------------------------------------------------- /data_generation/datascan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/datascan.py -------------------------------------------------------------------------------- /data_generation/datasim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/datasim.py -------------------------------------------------------------------------------- /data_generation/datasim_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/datasim_runner.sh -------------------------------------------------------------------------------- /data_generation/garmentviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/data_generation/garmentviewer.py -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/Running_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/docs/Running_generation.md -------------------------------------------------------------------------------- /docs/Setting_up_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/docs/Setting_up_generator.md -------------------------------------------------------------------------------- /docs/template_spec_with_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/docs/template_spec_with_comments.json -------------------------------------------------------------------------------- /img/data_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/img/data_samples.png -------------------------------------------------------------------------------- /img/render_scene_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/img/render_scene_example.png -------------------------------------------------------------------------------- /packages/customconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/customconfig.py -------------------------------------------------------------------------------- /packages/mayaqltools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/__init__.py -------------------------------------------------------------------------------- /packages/mayaqltools/garmentUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/garmentUI.py -------------------------------------------------------------------------------- /packages/mayaqltools/mayascene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/mayascene.py -------------------------------------------------------------------------------- /packages/mayaqltools/qualothwrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/qualothwrapper.py -------------------------------------------------------------------------------- /packages/mayaqltools/scan_imitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/scan_imitation.py -------------------------------------------------------------------------------- /packages/mayaqltools/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/simulation.py -------------------------------------------------------------------------------- /packages/mayaqltools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/mayaqltools/utils.py -------------------------------------------------------------------------------- /packages/pattern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/pattern/__init__.py -------------------------------------------------------------------------------- /packages/pattern/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/pattern/core.py -------------------------------------------------------------------------------- /packages/pattern/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/pattern/rotation.py -------------------------------------------------------------------------------- /packages/pattern/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/packages/pattern/wrappers.py -------------------------------------------------------------------------------- /system.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/system.template.json -------------------------------------------------------------------------------- /utility scripts/all_data_has_all_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/utility scripts/all_data_has_all_files.py -------------------------------------------------------------------------------- /utility scripts/crashes_to_unprocessed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/utility scripts/crashes_to_unprocessed.py -------------------------------------------------------------------------------- /utility scripts/gather_renders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/utility scripts/gather_renders.py -------------------------------------------------------------------------------- /utility scripts/maya_segmentaion_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/utility scripts/maya_segmentaion_viz.py -------------------------------------------------------------------------------- /utility scripts/merge_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maria-korosteleva/Garment-Pattern-Generator/HEAD/utility scripts/merge_datasets.py --------------------------------------------------------------------------------