├── README.md ├── camera.py ├── cube_reconstruction.py ├── example.py ├── features.py ├── processor.py ├── requirements.txt ├── structure.py ├── testsets ├── 3d_to_2d_projection.png ├── dino_2d_points.png ├── dino_3d_reconstructed.png ├── house.p3d ├── house1.jpg └── house_3d.png └── transformers.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/README.md -------------------------------------------------------------------------------- /camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/camera.py -------------------------------------------------------------------------------- /cube_reconstruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/cube_reconstruction.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/example.py -------------------------------------------------------------------------------- /features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/features.py -------------------------------------------------------------------------------- /processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/processor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | -------------------------------------------------------------------------------- /structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/structure.py -------------------------------------------------------------------------------- /testsets/3d_to_2d_projection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/testsets/3d_to_2d_projection.png -------------------------------------------------------------------------------- /testsets/dino_2d_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/testsets/dino_2d_points.png -------------------------------------------------------------------------------- /testsets/dino_3d_reconstructed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/testsets/dino_3d_reconstructed.png -------------------------------------------------------------------------------- /testsets/house.p3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/testsets/house.p3d -------------------------------------------------------------------------------- /testsets/house1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/testsets/house1.jpg -------------------------------------------------------------------------------- /testsets/house_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/testsets/house_3d.png -------------------------------------------------------------------------------- /transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alyssaq/3Dreconstruction/HEAD/transformers.py --------------------------------------------------------------------------------