gitextract_alyweq7y/ ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── arguments/ │ └── __init__.py ├── colormask.py ├── convert.py ├── edit_object_inpaint.py ├── find_points.ipynb ├── full360_render.py ├── full_eval.py ├── gaussian_renderer/ │ ├── __init__.py │ └── network_gui.py ├── generate_mask.py ├── lpipsPyTorch/ │ ├── __init__.py │ └── modules/ │ ├── lpips.py │ ├── networks.py │ └── utils.py ├── metrics.py ├── objremoval.py ├── readme.md ├── render.py ├── scene/ │ ├── __init__.py │ ├── cameras.py │ ├── colmap_loader.py │ ├── dataset_readers.py │ └── gaussian_model.py ├── scripts/ │ ├── bear_color.sh │ ├── bear_inpaint.sh │ ├── bear_removal.sh │ ├── bear_seg.sh │ ├── counter_color.sh │ ├── counter_remove.sh │ ├── counter_seg.sh │ ├── figurines_color.sh │ ├── figurines_remove.sh │ ├── figurines_seg.sh │ ├── figurines_train.sh │ ├── garden_train.sh │ ├── genmask_truck.sh │ ├── horns_remove.sh │ ├── horns_seg.sh │ ├── kitchen_color.sh │ ├── kitchen_inpaint.sh │ ├── kitchen_seg.sh │ ├── kitchen_train.sh │ ├── lego_train.sh │ ├── llff/ │ │ └── fern_train.sh │ ├── ramen_train.sh │ ├── teatime_color.sh │ ├── teatime_removal.sh │ ├── teatime_seg.sh │ ├── teatime_train.sh │ ├── test_teatime.sh │ ├── train_train.sh │ ├── truck_color.sh │ ├── truck_removal.sh │ ├── truck_seg.sh │ ├── truck_train.sh │ └── waldo_train.sh ├── train.py └── utils/ ├── camera_utils.py ├── general_utils.py ├── graphics_utils.py ├── image_utils.py ├── loss_utils.py ├── sh_utils.py └── system_utils.py