├── .gitignore ├── LICENSE ├── README.md ├── dataAndModel ├── README.md ├── trained_network.cpp └── trained_network.h ├── docs └── teaser.png └── networkTraining ├── .gitignore ├── README.md ├── libs ├── __init__.py ├── build.sh └── decode_block_op.cc ├── scripts ├── combine_whole_graph.py ├── loader.py ├── network.py ├── test_addSub_reg.py ├── test_bevel_reg.py ├── test_extrusion_reg.py ├── test_opt_cls.py ├── test_sweep_reg.py ├── train_addSub_reg.py ├── train_bevel_reg.py ├── train_extrusion_reg.py ├── train_opt_cls.py └── train_sweep_reg.py └── utils ├── __init__.py ├── freeze_graph_tool.py ├── lmdb_to_tfrecords.py └── util_funcs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/README.md -------------------------------------------------------------------------------- /dataAndModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/dataAndModel/README.md -------------------------------------------------------------------------------- /dataAndModel/trained_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/dataAndModel/trained_network.cpp -------------------------------------------------------------------------------- /dataAndModel/trained_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/dataAndModel/trained_network.h -------------------------------------------------------------------------------- /docs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/docs/teaser.png -------------------------------------------------------------------------------- /networkTraining/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/.gitignore -------------------------------------------------------------------------------- /networkTraining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/README.md -------------------------------------------------------------------------------- /networkTraining/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/libs/__init__.py -------------------------------------------------------------------------------- /networkTraining/libs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/libs/build.sh -------------------------------------------------------------------------------- /networkTraining/libs/decode_block_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/libs/decode_block_op.cc -------------------------------------------------------------------------------- /networkTraining/scripts/combine_whole_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/combine_whole_graph.py -------------------------------------------------------------------------------- /networkTraining/scripts/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/loader.py -------------------------------------------------------------------------------- /networkTraining/scripts/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/network.py -------------------------------------------------------------------------------- /networkTraining/scripts/test_addSub_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/test_addSub_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/test_bevel_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/test_bevel_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/test_extrusion_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/test_extrusion_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/test_opt_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/test_opt_cls.py -------------------------------------------------------------------------------- /networkTraining/scripts/test_sweep_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/test_sweep_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/train_addSub_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/train_addSub_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/train_bevel_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/train_bevel_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/train_extrusion_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/train_extrusion_reg.py -------------------------------------------------------------------------------- /networkTraining/scripts/train_opt_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/train_opt_cls.py -------------------------------------------------------------------------------- /networkTraining/scripts/train_sweep_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/scripts/train_sweep_reg.py -------------------------------------------------------------------------------- /networkTraining/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networkTraining/utils/freeze_graph_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/utils/freeze_graph_tool.py -------------------------------------------------------------------------------- /networkTraining/utils/lmdb_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/utils/lmdb_to_tfrecords.py -------------------------------------------------------------------------------- /networkTraining/utils/util_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enigma-li/Sketch2CAD/HEAD/networkTraining/utils/util_funcs.py --------------------------------------------------------------------------------