├── README.md ├── data ├── ShapeNet.py ├── ShapeNet_labels.pkl ├── ellipsoid │ ├── face1.obj │ ├── face2.obj │ ├── face3.obj │ └── info_ellipsoid.dat ├── info_ellipsoid.dat ├── shapenet.json ├── test_list_plane.txt ├── test_list_small.txt ├── train_list_plane.txt └── train_list_small.txt ├── evaluate.py ├── img ├── examples_1.png ├── examples_2.png ├── net.png └── u-net.png ├── log └── 2019-01-18T02:32:24.320546 │ ├── log.txt │ └── network_4.pth ├── model ├── chamfer │ ├── chamfer.cu │ ├── chamfer_cuda.cpp │ ├── dist_chamfer.py │ └── setup.py ├── gcn_layers.py ├── loss.py └── model.py ├── ref └── pixel2mesh.pdf ├── reports ├── final_report.pdf └── proposal.pdf ├── train.py └── utils └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/ShapeNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/ShapeNet.py -------------------------------------------------------------------------------- /data/ShapeNet_labels.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/ShapeNet_labels.pkl -------------------------------------------------------------------------------- /data/ellipsoid/face1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/ellipsoid/face1.obj -------------------------------------------------------------------------------- /data/ellipsoid/face2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/ellipsoid/face2.obj -------------------------------------------------------------------------------- /data/ellipsoid/face3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/ellipsoid/face3.obj -------------------------------------------------------------------------------- /data/ellipsoid/info_ellipsoid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/ellipsoid/info_ellipsoid.dat -------------------------------------------------------------------------------- /data/info_ellipsoid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/info_ellipsoid.dat -------------------------------------------------------------------------------- /data/shapenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/shapenet.json -------------------------------------------------------------------------------- /data/test_list_plane.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/test_list_plane.txt -------------------------------------------------------------------------------- /data/test_list_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/test_list_small.txt -------------------------------------------------------------------------------- /data/train_list_plane.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/train_list_plane.txt -------------------------------------------------------------------------------- /data/train_list_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/data/train_list_small.txt -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/evaluate.py -------------------------------------------------------------------------------- /img/examples_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/img/examples_1.png -------------------------------------------------------------------------------- /img/examples_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/img/examples_2.png -------------------------------------------------------------------------------- /img/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/img/net.png -------------------------------------------------------------------------------- /img/u-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/img/u-net.png -------------------------------------------------------------------------------- /log/2019-01-18T02:32:24.320546/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/log/2019-01-18T02:32:24.320546/log.txt -------------------------------------------------------------------------------- /log/2019-01-18T02:32:24.320546/network_4.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/log/2019-01-18T02:32:24.320546/network_4.pth -------------------------------------------------------------------------------- /model/chamfer/chamfer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/chamfer/chamfer.cu -------------------------------------------------------------------------------- /model/chamfer/chamfer_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/chamfer/chamfer_cuda.cpp -------------------------------------------------------------------------------- /model/chamfer/dist_chamfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/chamfer/dist_chamfer.py -------------------------------------------------------------------------------- /model/chamfer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/chamfer/setup.py -------------------------------------------------------------------------------- /model/gcn_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/gcn_layers.py -------------------------------------------------------------------------------- /model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/loss.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/model/model.py -------------------------------------------------------------------------------- /ref/pixel2mesh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/ref/pixel2mesh.pdf -------------------------------------------------------------------------------- /reports/final_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/reports/final_report.pdf -------------------------------------------------------------------------------- /reports/proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/reports/proposal.pdf -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tong-ZHAO/Pixel2Mesh-Pytorch/HEAD/utils/utils.py --------------------------------------------------------------------------------