added docker compose for easier set up #31
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Made a docker compose environment so users or contributors can more easily get H3DGS running on their own machines. It isn't the most ideal docker configuration, but the pay off is definitely worth it since all you need to run is
docker-compose up
and the environment will be running in a docker container. I tested this by using my own dataset and shelling into the container withdocker exec -it hierarchical_3d_gaussians /bin/bash
and successfully ran these commands on my own data:python ./preprocess/generate_colmap.py --project_dir data/my_data
python ./preprocess/generate_chunks.py --project_dir data/my_data
python ./preprocess/generate_depth.py --project_dir data/my_data
python ./scripts/full_train.py --project_dir data/my_data