├── LICENSE ├── README.md ├── cdt_utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── linalg_utils.cpython-36.pyc │ ├── linalg_utils.cpython-37.pyc │ ├── plot_utils.cpython-36.pyc │ ├── plot_utils.cpython-37.pyc │ ├── point2_modules.cpython-36.pyc │ ├── point2_modules.cpython-37.pyc │ ├── pointnet2_utils.cpython-36.pyc │ ├── pointnet2_utils.cpython-37.pyc │ ├── pytorch_utils.cpython-36.pyc │ ├── pytorch_utils.cpython-37.pyc │ ├── sampling_grouping.cpython-36.pyc │ └── sampling_grouping.cpython-37.pyc ├── _ext │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ └── pointnet2 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ │ └── _pointnet2.so ├── linalg_utils.py ├── plot_utils.py ├── point2_modules.py ├── pointnet2_utils.py ├── pytorch_utils.py └── sampling_grouping.py ├── configs ├── __pycache__ │ ├── config_gan.cpython-36.pyc │ ├── config_rec.cpython-36.pyc │ ├── config_refine.cpython-36.pyc │ └── config_ui.cpython-36.pyc ├── config.pyc ├── config_gan.py ├── config_rec.py ├── config_refine.py └── config_ui.py ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── evaluate.cpython-36.pyc │ ├── evaluate_gan.cpython-36.pyc │ ├── evaluate_graphx.cpython-36.pyc │ ├── evaluate_graphx_fixed_view.cpython-36.pyc │ ├── evaluate_hand_draw.cpython-36.pyc │ ├── evaluate_multi_view.cpython-36.pyc │ ├── evaluate_part_rec.cpython-36.pyc │ ├── evaluate_rec.cpython-36.pyc │ ├── evaluate_refine.cpython-36.pyc │ ├── inference.cpython-36.pyc │ ├── predict_skeleton.cpython-36.pyc │ ├── refine.cpython-36.pyc │ ├── single_img_test.cpython-36.pyc │ ├── symmetric_optimize.cpython-36.pyc │ ├── test.cpython-36.pyc │ ├── test_gan.cpython-36.pyc │ ├── test_graphx.cpython-36.pyc │ ├── test_opt.cpython-36.pyc │ ├── test_rec.cpython-36.pyc │ ├── test_refine.cpython-36.pyc │ ├── train.cpython-36.pyc │ ├── train_gan.cpython-36.pyc │ ├── train_graphx.cpython-35.pyc │ ├── train_graphx.cpython-36.pyc │ ├── train_rec.cpython-36.pyc │ ├── train_refine.cpython-36.pyc │ ├── train_stage1.cpython-36.pyc │ ├── train_stage2.cpython-36.pyc │ ├── valid.cpython-36.pyc │ ├── valid_gan.cpython-36.pyc │ ├── valid_graphx.cpython-36.pyc │ ├── valid_rec.cpython-36.pyc │ ├── valid_refine.cpython-36.pyc │ ├── valid_stage1.cpython-36.pyc │ └── valid_stage2.cpython-36.pyc ├── evaluate_gan.py ├── evaluate_rec.py ├── evaluate_refine.py ├── inference.py ├── predict_skeleton.py ├── refine.py ├── symmetric_optimize.py ├── test_gan.py ├── test_rec.py ├── test_refine.py ├── train_gan.py ├── train_rec.py ├── train_refine.py ├── valid_gan.py ├── valid_rec.py └── valid_refine.py ├── cuda ├── MDS │ ├── MDS.cpp │ ├── MDS.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── MDS_cuda.cu │ ├── MDS_module.py │ ├── dist │ │ ├── MDS-0.0.0-py3.6-linux-x86_64.egg │ │ └── MDS-0.0.0-py3.7-linux-x86_64.egg │ └── setup.py ├── chamfer_dist │ ├── __init__.py │ ├── chamfer.cu │ ├── chamfer_cuda.cpp │ ├── setup.py │ └── test.py ├── chamfer_distance │ ├── __init__.py │ ├── chamfer_distance.cpp │ ├── chamfer_distance.cu │ └── chamfer_distance.py ├── cubic_feature_sampling │ ├── __init__.py │ ├── cubic_feature_sampling.cu │ ├── cubic_feature_sampling.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── cubic_feature_sampling_cuda.cpp │ ├── dist │ │ └── cubic_feature_sampling-1.1.0-py3.6-linux-x86_64.egg │ ├── setup.py │ └── test.py ├── emd │ ├── CDEMD.png │ ├── README.md │ ├── __pycache__ │ │ └── emd_module.cpython-36.pyc │ ├── build │ │ ├── lib.linux-x86_64-3.6 │ │ │ └── emd.cpython-36m-x86_64-linux-gnu.so │ │ └── temp.linux-x86_64-3.6 │ │ │ ├── .ninja_deps │ │ │ ├── .ninja_log │ │ │ ├── build.ninja │ │ │ ├── emd.o │ │ │ └── emd_cuda.o │ ├── dist │ │ ├── emd-0.0.0-py3.6-linux-x86_64.egg │ │ ├── emd-0.0.0-py3.7-linux-x86_64.egg │ │ └── emd-0.0.0-py3.8-linux-x86_64.egg │ ├── emd.cpp │ ├── emd.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── emd_cuda.cu │ ├── emd_module.py │ └── setup.py ├── expansion_penalty │ ├── dist │ │ ├── expansion_penalty-0.0.0-py3.6-linux-x86_64.egg │ │ ├── expansion_penalty-0.0.0-py3.7-linux-x86_64.egg │ │ └── expansion_penalty-0.0.0-py3.8-linux-x86_64.egg │ ├── expansion_penalty.cpp │ ├── expansion_penalty.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── expansion_penalty_cuda.cu │ ├── expansion_penalty_module.py │ └── setup.py ├── gridding │ ├── __init__.py │ ├── dist │ │ └── gridding-2.1.0-py3.6-linux-x86_64.egg │ ├── gridding.cu │ ├── gridding.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── gridding_cuda.cpp │ ├── gridding_reverse.cu │ ├── setup.py │ └── test.py ├── gridding_loss │ ├── __init__.py │ ├── dist │ │ └── gridding_distance-1.0.0-py3.6-linux-x86_64.egg │ ├── gridding_distance.cu │ ├── gridding_distance.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── gridding_distance_cuda.cpp │ └── setup.py └── p2i_op │ ├── .clang-format │ ├── __init__.py │ ├── __pycache__ │ └── __init__.cpython-36.pyc │ ├── common.h │ ├── ext.cpp │ ├── p2i_max.cu │ ├── p2i_max.h │ ├── p2i_sum.cu │ ├── p2i_sum.h │ ├── p2i_test.py │ └── utility.h ├── datasets ├── Pascal3D.json ├── PascalShapeNet.json ├── Pix3D.json ├── ShapeNet.json ├── ShapeNetPart.json ├── rec.json └── reconstruct_split.py ├── layers ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── gcn.cpython-36.pyc │ └── graphx.cpython-36.pyc └── graphx.py ├── losses ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── chamfer_loss.cpython-36.pyc │ ├── cross_entropy_loss.cpython-36.pyc │ ├── delta_loss.cpython-36.pyc │ ├── earth_mover_distance.cpython-36.pyc │ ├── loss_utils.cpython-36.pyc │ ├── proj_losses.cpython-36.pyc │ └── transform_loss.cpython-36.pyc ├── chamfer_loss.py ├── cross_entropy_loss.py ├── delta_loss.py ├── earth_mover_distance.py ├── loss_utils.py └── proj_losses.py ├── models ├── __init__.py ├── __pycache__ │ ├── STN.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ ├── decoder.cpython-36.pyc │ ├── edge_detection.cpython-36.pyc │ ├── edge_res.cpython-36.pyc │ ├── encoder.cpython-36.pyc │ ├── graphx.cpython-36.pyc │ ├── graphx_generator.cpython-36.pyc │ ├── graphx_rec.cpython-36.pyc │ ├── graphx_reconstructor.cpython-36.pyc │ ├── networks.cpython-36.pyc │ ├── networks_edge_conv_refiner.cpython-36.pyc │ ├── networks_graphx.cpython-36.pyc │ ├── networks_graphx_gan.cpython-36.pyc │ ├── networks_graphx_rec.cpython-36.pyc │ ├── networks_graphx_refine.cpython-36.pyc │ ├── networks_psgn.cpython-36.pyc │ ├── networks_sketch_rec.cpython-36.pyc │ ├── projection.cpython-36.pyc │ ├── projection_depth.cpython-36.pyc │ ├── projection_discriminator.cpython-36.pyc │ ├── psgn_fc.cpython-36.pyc │ ├── updater.cpython-36.pyc │ ├── updater_multi_scale.cpython-36.pyc │ ├── vgg.cpython-36.pyc │ ├── view_encoder.cpython-36.pyc │ └── view_estimater.cpython-36.pyc ├── edge_detection.py ├── edge_res.py ├── graphx.py ├── graphx_rec.py ├── networks_edge_conv_refiner.py ├── networks_graphx_gan.py ├── networks_graphx_rec.py ├── networks_graphx_refine.py ├── networks_graphx_refine_no_img_encoder.py ├── networks_psgn.py ├── networks_sketch_rec.py ├── projection.py ├── projection_depth.py ├── projection_discriminator.py ├── psgn_fc.py ├── updater.py ├── updater_multi_scale.py ├── view_encoder.py └── view_estimater.py ├── requirements.txt ├── runner.py ├── sketch_3d_app.py ├── sketch_3d_ui ├── __pycache__ │ ├── base_opengl_widget.cpython-36.pyc │ ├── bill_board.cpython-36.pyc │ ├── camera.cpython-36.pyc │ ├── control_points.cpython-36.pyc │ ├── counter.cpython-36.pyc │ ├── edit_widget.cpython-36.pyc │ ├── ffd.cpython-36.pyc │ ├── ffd_utils.cpython-36.pyc │ ├── generation_widget.cpython-36.pyc │ ├── generation_widget_pred.cpython-36.pyc │ ├── geometry.cpython-36.pyc │ ├── geometry_manager.cpython-36.pyc │ ├── lattice.cpython-36.pyc │ ├── painter.cpython-36.pyc │ ├── plane.cpython-36.pyc │ ├── plane_manager.cpython-36.pyc │ ├── point_cloud.cpython-36.pyc │ ├── point_cloud_manager.cpython-36.pyc │ ├── point_cloud_select_manager.cpython-36.pyc │ ├── preview_widget.cpython-36.pyc │ ├── sketch_widget.cpython-36.pyc │ ├── transform.cpython-36.pyc │ ├── viewport.cpython-36.pyc │ ├── work_face.cpython-36.pyc │ ├── work_plane.cpython-36.pyc │ └── work_plane_manager.cpython-36.pyc ├── base_opengl_widget.py ├── cache │ ├── imgs │ │ ├── empty_image.png │ │ ├── refine_image.png │ │ ├── screenshot_image.png │ │ ├── sketch_image.png │ │ └── update_image.png │ └── pcs │ │ ├── coarse.ply │ │ ├── optimize_pc.ply │ │ └── refine.ply ├── counter.py ├── edit_widget.py ├── ffd │ ├── __pycache__ │ │ ├── ffd.cpython-36.pyc │ │ ├── ffd_utils.cpython-36.pyc │ │ └── lattice.cpython-36.pyc │ ├── ffd.py │ ├── ffd_utils.py │ └── lattice.py ├── geometry │ ├── __pycache__ │ │ ├── bill_board.cpython-36.pyc │ │ ├── canvas.cpython-36.pyc │ │ ├── geometry_utils.cpython-36.pyc │ │ ├── plane.cpython-36.pyc │ │ ├── point_cloud.cpython-36.pyc │ │ ├── transform.cpython-36.pyc │ │ └── work_plane.cpython-36.pyc │ ├── bill_board.py │ ├── canvas.py │ ├── control_point.py │ ├── geometry_utils.py │ ├── plane.py │ ├── point_cloud.py │ ├── transform.py │ └── work_plane.py ├── icons │ ├── candidate.png │ ├── confirm.png │ ├── delete.png │ ├── inputDetail.png │ ├── inputDetail_off.png │ ├── inputErase.png │ ├── inputErase_off.png │ ├── inputSketch.png │ ├── inputSketch_off.png │ ├── lock.png │ ├── pointCloudCompSelect.png │ ├── pointCloudCompSelect_off.png │ ├── pointCloudDeform.png │ ├── pointCloudDeform_off.png │ ├── pointCloudSelect.png │ ├── pointCloudSelect_off.png │ ├── unlock.png │ ├── workPlaneSelect.png │ ├── workPlaneSelect_off.png │ ├── workPlaneSketch.png │ ├── workPlaneSketch_off.png │ ├── workPlaneTransform.png │ └── workPlaneTransform_off.png ├── manager │ ├── __pycache__ │ │ ├── canvas_manager.cpython-36.pyc │ │ ├── geometry_manager.cpython-36.pyc │ │ ├── input_erase_manager.cpython-36.pyc │ │ ├── input_sketch_manager.cpython-36.pyc │ │ ├── point_click_select_manager.cpython-36.pyc │ │ ├── point_cloud_comp_select_manager.cpython-36.pyc │ │ ├── point_cloud_deform_manager.cpython-36.pyc │ │ ├── point_cloud_select_manager.cpython-36.pyc │ │ ├── work_plane_select_manager.cpython-36.pyc │ │ ├── work_plane_sketch_manager.cpython-36.pyc │ │ └── work_plane_transform_manager.cpython-36.pyc │ ├── canvas_manager.py │ ├── geometry_manager.py │ ├── point_cloud_comp_select_manager.py │ ├── point_cloud_deform_manager.py │ ├── point_cloud_select_manager.py │ ├── work_plane_select_manager.py │ ├── work_plane_sketch_manager.py │ └── work_plane_transform_manager.py ├── preview_widget.py ├── user_evaluation │ ├── failure_cases │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ └── refine.ply │ ├── user1 │ │ ├── task1 │ │ │ └── sample1 │ │ │ │ ├── counter.txt │ │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part1_0.ply │ │ │ │ └── refine.ply │ │ └── task2 │ │ │ ├── sample1 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ └── refine.ply │ │ │ ├── sample2 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part2_0.ply │ │ │ │ └── refine.ply │ │ │ └── sample3 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ ├── final_base.ply │ │ │ ├── part2_0.ply │ │ │ ├── part3_0.ply │ │ │ ├── part4_0.ply │ │ │ ├── part5_0.ply │ │ │ └── refine.ply │ ├── user2 │ │ ├── task1 │ │ │ ├── sample1 │ │ │ │ ├── counter.txt │ │ │ │ ├── imgs │ │ │ │ │ ├── empty_image.png │ │ │ │ │ ├── refine_image.png │ │ │ │ │ ├── screenshot_image.png │ │ │ │ │ ├── sketch_image.png │ │ │ │ │ └── update_image.png │ │ │ │ └── pcs │ │ │ │ │ ├── coarse.ply │ │ │ │ │ ├── final_base.ply │ │ │ │ │ ├── part0_0.ply │ │ │ │ │ ├── part1_0.ply │ │ │ │ │ ├── part2_0.ply │ │ │ │ │ ├── part3_0.ply │ │ │ │ │ └── refine.ply │ │ │ └── sample2 │ │ │ │ ├── counter.txt │ │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part1_0.ply │ │ │ │ ├── part2_0.ply │ │ │ │ ├── part3_0.ply │ │ │ │ └── refine.ply │ │ └── task2 │ │ │ ├── sample1 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ └── refine.ply │ │ │ ├── sample2 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part1_0.ply │ │ │ │ └── refine.ply │ │ │ └── sample3 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ ├── final_base.ply │ │ │ ├── part0_0.ply │ │ │ └── refine.ply │ ├── user3 │ │ ├── task1 │ │ │ ├── sample1 │ │ │ │ ├── counter.txt │ │ │ │ ├── imgs │ │ │ │ │ ├── empty_image.png │ │ │ │ │ ├── refine_image.png │ │ │ │ │ ├── screenshot_image.png │ │ │ │ │ ├── sketch_image.png │ │ │ │ │ └── update_image.png │ │ │ │ └── pcs │ │ │ │ │ ├── coarse.ply │ │ │ │ │ ├── final_base.ply │ │ │ │ │ ├── part0_0.ply │ │ │ │ │ ├── part1_0.ply │ │ │ │ │ ├── part2_0.ply │ │ │ │ │ ├── part3_0.ply │ │ │ │ │ └── refine.ply │ │ │ └── sample2 │ │ │ │ ├── counter.txt │ │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part0_1.ply │ │ │ │ ├── part1_0.ply │ │ │ │ ├── part1_1.ply │ │ │ │ ├── part2_0.ply │ │ │ │ ├── part2_1.ply │ │ │ │ └── refine.ply │ │ └── task2 │ │ │ ├── sample1 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ └── refine.ply │ │ │ ├── sample2 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part1_0.ply │ │ │ │ └── refine.ply │ │ │ └── sample3 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ ├── final_base.ply │ │ │ ├── part0_0.ply │ │ │ └── refine.ply │ └── user4 │ │ ├── task1 │ │ ├── sample1 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ │ ├── empty_image.png │ │ │ │ ├── refine_image.png │ │ │ │ ├── screenshot_image.png │ │ │ │ ├── sketch_image.png │ │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ │ ├── coarse.ply │ │ │ │ ├── final_base.ply │ │ │ │ ├── part0_0.ply │ │ │ │ ├── part1_0.ply │ │ │ │ ├── part2_0.ply │ │ │ │ ├── part3_0.ply │ │ │ │ └── refine.ply │ │ └── sample2 │ │ │ ├── counter.txt │ │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ ├── final_base.ply │ │ │ ├── part0_0.ply │ │ │ ├── part1_0.ply │ │ │ ├── part2_0.ply │ │ │ ├── part3_0.ply │ │ │ └── refine.ply │ │ └── task2 │ │ ├── sample1 │ │ ├── counter.txt │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ ├── final_base.ply │ │ │ └── refine.ply │ │ ├── sample2 │ │ ├── counter.txt │ │ ├── imgs │ │ │ ├── empty_image.png │ │ │ ├── refine_image.png │ │ │ ├── screenshot_image.png │ │ │ ├── sketch_image.png │ │ │ └── update_image.png │ │ └── pcs │ │ │ ├── coarse.ply │ │ │ ├── final_base.ply │ │ │ └── refine.ply │ │ └── sample3 │ │ ├── counter.txt │ │ ├── imgs │ │ ├── empty_image.png │ │ ├── refine_image.png │ │ ├── screenshot_image.png │ │ ├── sketch_image.png │ │ └── update_image.png │ │ └── pcs │ │ ├── coarse.ply │ │ ├── final_base.ply │ │ └── refine.ply ├── utils │ ├── __pycache__ │ │ └── obj_loader.cpython-36.pyc │ └── obj_loader.py └── view │ ├── __pycache__ │ ├── camera.cpython-36.pyc │ └── viewport.cpython-36.pyc │ ├── camera.py │ └── viewport.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-35.pyc ├── __init__.cpython-36.pyc ├── data_loaders.cpython-35.pyc ├── data_loaders.cpython-36.pyc ├── data_transforms.cpython-36.pyc ├── network_utils.cpython-36.pyc ├── point_cloud_utils.cpython-36.pyc ├── point_cloud_visualization.cpython-36.pyc ├── point_cloud_visualization_old.cpython-36.pyc ├── pointnet2_utils.cpython-36.pyc ├── rotation_err.cpython-36.pyc ├── rotation_eval.cpython-36.pyc └── view_pred_utils.cpython-36.pyc ├── data_loaders.py ├── data_loaders_component.py ├── data_transforms.py ├── dataset_analyzer.py ├── network_utils.py ├── plot_utils.py ├── point_cloud_utils.py ├── point_cloud_visualization.py ├── point_cloud_visualization_old.py ├── pointnet2_utils.py ├── rotation_eval.py └── view_pred_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/README.md -------------------------------------------------------------------------------- /cdt_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdt_utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/linalg_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/linalg_utils.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/linalg_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/linalg_utils.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/plot_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/plot_utils.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/plot_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/plot_utils.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/point2_modules.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/point2_modules.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/point2_modules.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/point2_modules.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/pointnet2_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/pointnet2_utils.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/pointnet2_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/pointnet2_utils.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/pytorch_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/pytorch_utils.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/pytorch_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/pytorch_utils.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/sampling_grouping.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/sampling_grouping.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/__pycache__/sampling_grouping.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/__pycache__/sampling_grouping.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdt_utils/_ext/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/_ext/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/_ext/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/_ext/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/_ext/pointnet2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/_ext/pointnet2/__init__.py -------------------------------------------------------------------------------- /cdt_utils/_ext/pointnet2/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/_ext/pointnet2/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /cdt_utils/_ext/pointnet2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/_ext/pointnet2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /cdt_utils/_ext/pointnet2/_pointnet2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/_ext/pointnet2/_pointnet2.so -------------------------------------------------------------------------------- /cdt_utils/linalg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/linalg_utils.py -------------------------------------------------------------------------------- /cdt_utils/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/plot_utils.py -------------------------------------------------------------------------------- /cdt_utils/point2_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/point2_modules.py -------------------------------------------------------------------------------- /cdt_utils/pointnet2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/pointnet2_utils.py -------------------------------------------------------------------------------- /cdt_utils/pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/pytorch_utils.py -------------------------------------------------------------------------------- /cdt_utils/sampling_grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cdt_utils/sampling_grouping.py -------------------------------------------------------------------------------- /configs/__pycache__/config_gan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/__pycache__/config_gan.cpython-36.pyc -------------------------------------------------------------------------------- /configs/__pycache__/config_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/__pycache__/config_rec.cpython-36.pyc -------------------------------------------------------------------------------- /configs/__pycache__/config_refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/__pycache__/config_refine.cpython-36.pyc -------------------------------------------------------------------------------- /configs/__pycache__/config_ui.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/__pycache__/config_ui.cpython-36.pyc -------------------------------------------------------------------------------- /configs/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/config.pyc -------------------------------------------------------------------------------- /configs/config_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/config_gan.py -------------------------------------------------------------------------------- /configs/config_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/config_rec.py -------------------------------------------------------------------------------- /configs/config_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/config_refine.py -------------------------------------------------------------------------------- /configs/config_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/configs/config_ui.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_gan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_gan.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_graphx.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_graphx_fixed_view.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_graphx_fixed_view.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_hand_draw.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_hand_draw.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_multi_view.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_multi_view.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_part_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_part_rec.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_rec.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluate_refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/evaluate_refine.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/inference.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/inference.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/predict_skeleton.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/predict_skeleton.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/refine.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/single_img_test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/single_img_test.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/symmetric_optimize.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/symmetric_optimize.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/test_gan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/test_gan.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/test_graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/test_graphx.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/test_opt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/test_opt.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/test_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/test_rec.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/test_refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/test_refine.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_gan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_gan.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_graphx.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_graphx.cpython-35.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_graphx.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_rec.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_refine.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_stage1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_stage1.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/train_stage2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/train_stage2.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid_gan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid_gan.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid_graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid_graphx.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid_rec.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid_refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid_refine.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid_stage1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid_stage1.cpython-36.pyc -------------------------------------------------------------------------------- /core/__pycache__/valid_stage2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/__pycache__/valid_stage2.cpython-36.pyc -------------------------------------------------------------------------------- /core/evaluate_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/evaluate_gan.py -------------------------------------------------------------------------------- /core/evaluate_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/evaluate_rec.py -------------------------------------------------------------------------------- /core/evaluate_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/evaluate_refine.py -------------------------------------------------------------------------------- /core/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/inference.py -------------------------------------------------------------------------------- /core/predict_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/predict_skeleton.py -------------------------------------------------------------------------------- /core/refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/refine.py -------------------------------------------------------------------------------- /core/symmetric_optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/symmetric_optimize.py -------------------------------------------------------------------------------- /core/test_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/test_gan.py -------------------------------------------------------------------------------- /core/test_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/test_rec.py -------------------------------------------------------------------------------- /core/test_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/test_refine.py -------------------------------------------------------------------------------- /core/train_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/train_gan.py -------------------------------------------------------------------------------- /core/train_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/train_rec.py -------------------------------------------------------------------------------- /core/train_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/train_refine.py -------------------------------------------------------------------------------- /core/valid_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/valid_gan.py -------------------------------------------------------------------------------- /core/valid_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/valid_rec.py -------------------------------------------------------------------------------- /core/valid_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/core/valid_refine.py -------------------------------------------------------------------------------- /cuda/MDS/MDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/MDS.cpp -------------------------------------------------------------------------------- /cuda/MDS/MDS.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/MDS.egg-info/PKG-INFO -------------------------------------------------------------------------------- /cuda/MDS/MDS.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/MDS.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /cuda/MDS/MDS.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuda/MDS/MDS.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MDS 2 | -------------------------------------------------------------------------------- /cuda/MDS/MDS_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/MDS_cuda.cu -------------------------------------------------------------------------------- /cuda/MDS/MDS_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/MDS_module.py -------------------------------------------------------------------------------- /cuda/MDS/dist/MDS-0.0.0-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/dist/MDS-0.0.0-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/MDS/dist/MDS-0.0.0-py3.7-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/dist/MDS-0.0.0-py3.7-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/MDS/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/MDS/setup.py -------------------------------------------------------------------------------- /cuda/chamfer_dist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_dist/__init__.py -------------------------------------------------------------------------------- /cuda/chamfer_dist/chamfer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_dist/chamfer.cu -------------------------------------------------------------------------------- /cuda/chamfer_dist/chamfer_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_dist/chamfer_cuda.cpp -------------------------------------------------------------------------------- /cuda/chamfer_dist/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_dist/setup.py -------------------------------------------------------------------------------- /cuda/chamfer_dist/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_dist/test.py -------------------------------------------------------------------------------- /cuda/chamfer_distance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_distance/__init__.py -------------------------------------------------------------------------------- /cuda/chamfer_distance/chamfer_distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_distance/chamfer_distance.cpp -------------------------------------------------------------------------------- /cuda/chamfer_distance/chamfer_distance.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_distance/chamfer_distance.cu -------------------------------------------------------------------------------- /cuda/chamfer_distance/chamfer_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/chamfer_distance/chamfer_distance.py -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/__init__.py -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/cubic_feature_sampling.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/cubic_feature_sampling.cu -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/cubic_feature_sampling.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/cubic_feature_sampling.egg-info/PKG-INFO -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/cubic_feature_sampling.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/cubic_feature_sampling.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/cubic_feature_sampling.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/cubic_feature_sampling.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cubic_feature_sampling 2 | -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/cubic_feature_sampling_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/cubic_feature_sampling_cuda.cpp -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/dist/cubic_feature_sampling-1.1.0-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/dist/cubic_feature_sampling-1.1.0-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/setup.py -------------------------------------------------------------------------------- /cuda/cubic_feature_sampling/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/cubic_feature_sampling/test.py -------------------------------------------------------------------------------- /cuda/emd/CDEMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/CDEMD.png -------------------------------------------------------------------------------- /cuda/emd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/README.md -------------------------------------------------------------------------------- /cuda/emd/__pycache__/emd_module.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/__pycache__/emd_module.cpython-36.pyc -------------------------------------------------------------------------------- /cuda/emd/build/lib.linux-x86_64-3.6/emd.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/build/lib.linux-x86_64-3.6/emd.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /cuda/emd/build/temp.linux-x86_64-3.6/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/build/temp.linux-x86_64-3.6/.ninja_deps -------------------------------------------------------------------------------- /cuda/emd/build/temp.linux-x86_64-3.6/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/build/temp.linux-x86_64-3.6/.ninja_log -------------------------------------------------------------------------------- /cuda/emd/build/temp.linux-x86_64-3.6/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/build/temp.linux-x86_64-3.6/build.ninja -------------------------------------------------------------------------------- /cuda/emd/build/temp.linux-x86_64-3.6/emd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/build/temp.linux-x86_64-3.6/emd.o -------------------------------------------------------------------------------- /cuda/emd/build/temp.linux-x86_64-3.6/emd_cuda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/build/temp.linux-x86_64-3.6/emd_cuda.o -------------------------------------------------------------------------------- /cuda/emd/dist/emd-0.0.0-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/dist/emd-0.0.0-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/emd/dist/emd-0.0.0-py3.7-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/dist/emd-0.0.0-py3.7-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/emd/dist/emd-0.0.0-py3.8-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/dist/emd-0.0.0-py3.8-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/emd/emd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/emd.cpp -------------------------------------------------------------------------------- /cuda/emd/emd.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/emd.egg-info/PKG-INFO -------------------------------------------------------------------------------- /cuda/emd/emd.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/emd.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /cuda/emd/emd.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuda/emd/emd.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | emd 2 | -------------------------------------------------------------------------------- /cuda/emd/emd_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/emd_cuda.cu -------------------------------------------------------------------------------- /cuda/emd/emd_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/emd_module.py -------------------------------------------------------------------------------- /cuda/emd/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/emd/setup.py -------------------------------------------------------------------------------- /cuda/expansion_penalty/dist/expansion_penalty-0.0.0-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/dist/expansion_penalty-0.0.0-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/expansion_penalty/dist/expansion_penalty-0.0.0-py3.7-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/dist/expansion_penalty-0.0.0-py3.7-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/expansion_penalty/dist/expansion_penalty-0.0.0-py3.8-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/dist/expansion_penalty-0.0.0-py3.8-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/expansion_penalty.cpp -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/expansion_penalty.egg-info/PKG-INFO -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/expansion_penalty.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | expansion_penalty 2 | -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/expansion_penalty_cuda.cu -------------------------------------------------------------------------------- /cuda/expansion_penalty/expansion_penalty_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/expansion_penalty_module.py -------------------------------------------------------------------------------- /cuda/expansion_penalty/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/expansion_penalty/setup.py -------------------------------------------------------------------------------- /cuda/gridding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/__init__.py -------------------------------------------------------------------------------- /cuda/gridding/dist/gridding-2.1.0-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/dist/gridding-2.1.0-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/gridding/gridding.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/gridding.cu -------------------------------------------------------------------------------- /cuda/gridding/gridding.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/gridding.egg-info/PKG-INFO -------------------------------------------------------------------------------- /cuda/gridding/gridding.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/gridding.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /cuda/gridding/gridding.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuda/gridding/gridding.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gridding 2 | -------------------------------------------------------------------------------- /cuda/gridding/gridding_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/gridding_cuda.cpp -------------------------------------------------------------------------------- /cuda/gridding/gridding_reverse.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/gridding_reverse.cu -------------------------------------------------------------------------------- /cuda/gridding/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/setup.py -------------------------------------------------------------------------------- /cuda/gridding/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding/test.py -------------------------------------------------------------------------------- /cuda/gridding_loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/__init__.py -------------------------------------------------------------------------------- /cuda/gridding_loss/dist/gridding_distance-1.0.0-py3.6-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/dist/gridding_distance-1.0.0-py3.6-linux-x86_64.egg -------------------------------------------------------------------------------- /cuda/gridding_loss/gridding_distance.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/gridding_distance.cu -------------------------------------------------------------------------------- /cuda/gridding_loss/gridding_distance.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/gridding_distance.egg-info/PKG-INFO -------------------------------------------------------------------------------- /cuda/gridding_loss/gridding_distance.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/gridding_distance.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /cuda/gridding_loss/gridding_distance.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cuda/gridding_loss/gridding_distance.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gridding_distance 2 | -------------------------------------------------------------------------------- /cuda/gridding_loss/gridding_distance_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/gridding_distance_cuda.cpp -------------------------------------------------------------------------------- /cuda/gridding_loss/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/gridding_loss/setup.py -------------------------------------------------------------------------------- /cuda/p2i_op/.clang-format: -------------------------------------------------------------------------------- 1 | Language: Cpp 2 | BasedOnStyle: LLVM 3 | -------------------------------------------------------------------------------- /cuda/p2i_op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/__init__.py -------------------------------------------------------------------------------- /cuda/p2i_op/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /cuda/p2i_op/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/common.h -------------------------------------------------------------------------------- /cuda/p2i_op/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/ext.cpp -------------------------------------------------------------------------------- /cuda/p2i_op/p2i_max.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/p2i_max.cu -------------------------------------------------------------------------------- /cuda/p2i_op/p2i_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/p2i_max.h -------------------------------------------------------------------------------- /cuda/p2i_op/p2i_sum.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/p2i_sum.cu -------------------------------------------------------------------------------- /cuda/p2i_op/p2i_sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/p2i_sum.h -------------------------------------------------------------------------------- /cuda/p2i_op/p2i_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/p2i_test.py -------------------------------------------------------------------------------- /cuda/p2i_op/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/cuda/p2i_op/utility.h -------------------------------------------------------------------------------- /datasets/Pascal3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/Pascal3D.json -------------------------------------------------------------------------------- /datasets/PascalShapeNet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/PascalShapeNet.json -------------------------------------------------------------------------------- /datasets/Pix3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/Pix3D.json -------------------------------------------------------------------------------- /datasets/ShapeNet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/ShapeNet.json -------------------------------------------------------------------------------- /datasets/ShapeNetPart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/ShapeNetPart.json -------------------------------------------------------------------------------- /datasets/rec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/rec.json -------------------------------------------------------------------------------- /datasets/reconstruct_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/datasets/reconstruct_split.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/layers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/gcn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/layers/__pycache__/gcn.cpython-36.pyc -------------------------------------------------------------------------------- /layers/__pycache__/graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/layers/__pycache__/graphx.cpython-36.pyc -------------------------------------------------------------------------------- /layers/graphx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/layers/graphx.py -------------------------------------------------------------------------------- /losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /losses/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/chamfer_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/chamfer_loss.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/cross_entropy_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/cross_entropy_loss.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/delta_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/delta_loss.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/earth_mover_distance.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/earth_mover_distance.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/loss_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/loss_utils.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/proj_losses.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/proj_losses.cpython-36.pyc -------------------------------------------------------------------------------- /losses/__pycache__/transform_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/__pycache__/transform_loss.cpython-36.pyc -------------------------------------------------------------------------------- /losses/chamfer_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/chamfer_loss.py -------------------------------------------------------------------------------- /losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /losses/delta_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/delta_loss.py -------------------------------------------------------------------------------- /losses/earth_mover_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/earth_mover_distance.py -------------------------------------------------------------------------------- /losses/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/loss_utils.py -------------------------------------------------------------------------------- /losses/proj_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/losses/proj_losses.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/STN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/STN.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/decoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/decoder.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/edge_detection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/edge_detection.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/edge_res.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/edge_res.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/encoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/encoder.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/graphx.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/graphx_generator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/graphx_generator.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/graphx_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/graphx_rec.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/graphx_reconstructor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/graphx_reconstructor.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_edge_conv_refiner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_edge_conv_refiner.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_graphx.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_graphx.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_graphx_gan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_graphx_gan.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_graphx_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_graphx_rec.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_graphx_refine.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_graphx_refine.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_psgn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_psgn.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks_sketch_rec.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/networks_sketch_rec.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/projection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/projection.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/projection_depth.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/projection_depth.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/projection_discriminator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/projection_discriminator.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/psgn_fc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/psgn_fc.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/updater.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/updater.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/updater_multi_scale.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/updater_multi_scale.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/view_encoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/view_encoder.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/view_estimater.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/__pycache__/view_estimater.cpython-36.pyc -------------------------------------------------------------------------------- /models/edge_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/edge_detection.py -------------------------------------------------------------------------------- /models/edge_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/edge_res.py -------------------------------------------------------------------------------- /models/graphx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/graphx.py -------------------------------------------------------------------------------- /models/graphx_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/graphx_rec.py -------------------------------------------------------------------------------- /models/networks_edge_conv_refiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_edge_conv_refiner.py -------------------------------------------------------------------------------- /models/networks_graphx_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_graphx_gan.py -------------------------------------------------------------------------------- /models/networks_graphx_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_graphx_rec.py -------------------------------------------------------------------------------- /models/networks_graphx_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_graphx_refine.py -------------------------------------------------------------------------------- /models/networks_graphx_refine_no_img_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_graphx_refine_no_img_encoder.py -------------------------------------------------------------------------------- /models/networks_psgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_psgn.py -------------------------------------------------------------------------------- /models/networks_sketch_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/networks_sketch_rec.py -------------------------------------------------------------------------------- /models/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/projection.py -------------------------------------------------------------------------------- /models/projection_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/projection_depth.py -------------------------------------------------------------------------------- /models/projection_discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/projection_discriminator.py -------------------------------------------------------------------------------- /models/psgn_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/psgn_fc.py -------------------------------------------------------------------------------- /models/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/updater.py -------------------------------------------------------------------------------- /models/updater_multi_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/updater_multi_scale.py -------------------------------------------------------------------------------- /models/view_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/view_encoder.py -------------------------------------------------------------------------------- /models/view_estimater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/models/view_estimater.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/requirements.txt -------------------------------------------------------------------------------- /runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/runner.py -------------------------------------------------------------------------------- /sketch_3d_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_app.py -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/base_opengl_widget.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/base_opengl_widget.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/bill_board.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/bill_board.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/camera.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/camera.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/control_points.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/control_points.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/counter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/counter.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/edit_widget.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/edit_widget.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/ffd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/ffd.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/ffd_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/ffd_utils.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/generation_widget.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/generation_widget.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/generation_widget_pred.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/generation_widget_pred.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/geometry.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/geometry.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/geometry_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/geometry_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/lattice.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/lattice.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/painter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/painter.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/plane.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/plane.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/plane_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/plane_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/point_cloud.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/point_cloud.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/point_cloud_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/point_cloud_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/point_cloud_select_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/point_cloud_select_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/preview_widget.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/preview_widget.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/sketch_widget.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/sketch_widget.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/transform.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/transform.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/viewport.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/viewport.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/work_face.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/work_face.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/work_plane.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/work_plane.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/__pycache__/work_plane_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/__pycache__/work_plane_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/base_opengl_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/base_opengl_widget.py -------------------------------------------------------------------------------- /sketch_3d_ui/cache/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/cache/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/cache/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/cache/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/cache/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/cache/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/cache/pcs/optimize_pc.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/pcs/optimize_pc.ply -------------------------------------------------------------------------------- /sketch_3d_ui/cache/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/cache/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/counter.py -------------------------------------------------------------------------------- /sketch_3d_ui/edit_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/edit_widget.py -------------------------------------------------------------------------------- /sketch_3d_ui/ffd/__pycache__/ffd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/ffd/__pycache__/ffd.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/ffd/__pycache__/ffd_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/ffd/__pycache__/ffd_utils.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/ffd/__pycache__/lattice.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/ffd/__pycache__/lattice.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/ffd/ffd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/ffd/ffd.py -------------------------------------------------------------------------------- /sketch_3d_ui/ffd/ffd_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/ffd/ffd_utils.py -------------------------------------------------------------------------------- /sketch_3d_ui/ffd/lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/ffd/lattice.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/bill_board.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/bill_board.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/canvas.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/canvas.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/geometry_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/geometry_utils.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/plane.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/plane.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/point_cloud.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/point_cloud.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/transform.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/transform.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/__pycache__/work_plane.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/__pycache__/work_plane.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/bill_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/bill_board.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/canvas.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/control_point.py: -------------------------------------------------------------------------------- 1 | class CONTROL_POINT: -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/geometry_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/geometry_utils.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/plane.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/point_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/point_cloud.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/transform.py -------------------------------------------------------------------------------- /sketch_3d_ui/geometry/work_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/geometry/work_plane.py -------------------------------------------------------------------------------- /sketch_3d_ui/icons/candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/candidate.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/confirm.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/delete.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/inputDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/inputDetail.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/inputDetail_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/inputDetail_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/inputErase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/inputErase.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/inputErase_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/inputErase_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/inputSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/inputSketch.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/inputSketch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/inputSketch_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/lock.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/pointCloudCompSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/pointCloudCompSelect.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/pointCloudCompSelect_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/pointCloudCompSelect_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/pointCloudDeform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/pointCloudDeform.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/pointCloudDeform_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/pointCloudDeform_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/pointCloudSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/pointCloudSelect.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/pointCloudSelect_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/pointCloudSelect_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/unlock.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/workPlaneSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/workPlaneSelect.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/workPlaneSelect_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/workPlaneSelect_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/workPlaneSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/workPlaneSketch.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/workPlaneSketch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/workPlaneSketch_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/workPlaneTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/workPlaneTransform.png -------------------------------------------------------------------------------- /sketch_3d_ui/icons/workPlaneTransform_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/icons/workPlaneTransform_off.png -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/canvas_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/canvas_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/geometry_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/geometry_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/input_erase_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/input_erase_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/input_sketch_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/input_sketch_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/point_click_select_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/point_click_select_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/point_cloud_comp_select_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/point_cloud_comp_select_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/point_cloud_deform_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/point_cloud_deform_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/point_cloud_select_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/point_cloud_select_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/work_plane_select_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/work_plane_select_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/work_plane_sketch_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/work_plane_sketch_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/__pycache__/work_plane_transform_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/__pycache__/work_plane_transform_manager.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/manager/canvas_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/canvas_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/geometry_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/geometry_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/point_cloud_comp_select_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/point_cloud_comp_select_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/point_cloud_deform_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/point_cloud_deform_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/point_cloud_select_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/point_cloud_select_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/work_plane_select_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/work_plane_select_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/work_plane_sketch_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/work_plane_sketch_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/manager/work_plane_transform_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/manager/work_plane_transform_manager.py -------------------------------------------------------------------------------- /sketch_3d_ui/preview_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/preview_widget.py -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/failure_cases/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/failure_cases/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task1/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part3_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part3_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part4_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part4_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part5_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/part5_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user1/task2/sample3/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part3_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/part3_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part3_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/part3_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task1/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user2/task2/sample3/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part3_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/part3_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part0_1.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part0_1.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part1_1.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part1_1.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part2_1.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/part2_1.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task1/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user3/task2/sample3/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part3_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/part3_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part0_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part0_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part1_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part1_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part2_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part2_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part3_0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/part3_0.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task1/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample1/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample1/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample2/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample2/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/counter.txt -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/empty_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/refine_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/refine_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/screenshot_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/screenshot_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/sketch_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/sketch_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/update_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/imgs/update_image.png -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/pcs/coarse.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/pcs/coarse.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/pcs/final_base.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/pcs/final_base.ply -------------------------------------------------------------------------------- /sketch_3d_ui/user_evaluation/user4/task2/sample3/pcs/refine.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/user_evaluation/user4/task2/sample3/pcs/refine.ply -------------------------------------------------------------------------------- /sketch_3d_ui/utils/__pycache__/obj_loader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/utils/__pycache__/obj_loader.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/utils/obj_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/utils/obj_loader.py -------------------------------------------------------------------------------- /sketch_3d_ui/view/__pycache__/camera.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/view/__pycache__/camera.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/view/__pycache__/viewport.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/view/__pycache__/viewport.cpython-36.pyc -------------------------------------------------------------------------------- /sketch_3d_ui/view/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/view/camera.py -------------------------------------------------------------------------------- /sketch_3d_ui/view/viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/sketch_3d_ui/view/viewport.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_loaders.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/data_loaders.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_loaders.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/data_loaders.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/data_transforms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/data_transforms.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/network_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/network_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/point_cloud_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/point_cloud_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/point_cloud_visualization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/point_cloud_visualization.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/point_cloud_visualization_old.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/point_cloud_visualization_old.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/pointnet2_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/pointnet2_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/rotation_err.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/rotation_err.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/rotation_eval.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/rotation_eval.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/view_pred_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/__pycache__/view_pred_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/data_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/data_loaders.py -------------------------------------------------------------------------------- /utils/data_loaders_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/data_loaders_component.py -------------------------------------------------------------------------------- /utils/data_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/data_transforms.py -------------------------------------------------------------------------------- /utils/dataset_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/dataset_analyzer.py -------------------------------------------------------------------------------- /utils/network_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/network_utils.py -------------------------------------------------------------------------------- /utils/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/plot_utils.py -------------------------------------------------------------------------------- /utils/point_cloud_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/point_cloud_utils.py -------------------------------------------------------------------------------- /utils/point_cloud_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/point_cloud_visualization.py -------------------------------------------------------------------------------- /utils/point_cloud_visualization_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/point_cloud_visualization_old.py -------------------------------------------------------------------------------- /utils/pointnet2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/pointnet2_utils.py -------------------------------------------------------------------------------- /utils/rotation_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/rotation_eval.py -------------------------------------------------------------------------------- /utils/view_pred_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian220/Sketch2PointCloud/HEAD/utils/view_pred_utils.py --------------------------------------------------------------------------------