├── .gitignore ├── 3dgs.py ├── README.md ├── assets ├── 3dgs.png ├── README_ch.md ├── tranformation_2d.png └── transformation_3d.png ├── render_python ├── __init__.py ├── graphic.py ├── raster.py └── sh.py ├── requirements.txt └── transformation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/.gitignore -------------------------------------------------------------------------------- /3dgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/3dgs.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/README.md -------------------------------------------------------------------------------- /assets/3dgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/assets/3dgs.png -------------------------------------------------------------------------------- /assets/README_ch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/assets/README_ch.md -------------------------------------------------------------------------------- /assets/tranformation_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/assets/tranformation_2d.png -------------------------------------------------------------------------------- /assets/transformation_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/assets/transformation_3d.png -------------------------------------------------------------------------------- /render_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/render_python/__init__.py -------------------------------------------------------------------------------- /render_python/graphic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/render_python/graphic.py -------------------------------------------------------------------------------- /render_python/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/render_python/raster.py -------------------------------------------------------------------------------- /render_python/sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/render_python/sh.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.10.0.82 2 | matplotlib==3.5.3 3 | loguru 4 | tqdm -------------------------------------------------------------------------------- /transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SY-007-Research/3dgs_render_python/HEAD/transformation.py --------------------------------------------------------------------------------