.gitignore
.gitlab-ci.yml
.gitmodules
.pre-commit-config.yaml
.pylintrc
.version.sh
AUTHORS.md
CHANGELOG.md
CONTRIBUTING.md
LICENSE
Makefile
NOTICE
README.md
pyproject.toml
pytest.ini
setup.py
./cars_edge_detection_plugin/__init__.py
./cars_edge_detection_plugin/download_models.py
./cars_edge_detection_plugin/applications/__init__.py
./cars_edge_detection_plugin/applications/depth_map_generation/__init__.py
./cars_edge_detection_plugin/applications/depth_map_generation/abstract_depth_map_generation_app.py
./cars_edge_detection_plugin/applications/depth_map_generation/moge2_depth_generation.py
./cars_edge_detection_plugin/applications/depth_map_generation/moge2_depth_generation_tools.py
./cars_edge_detection_plugin/applications/depth_map_generation/moge2_wrapper.py
./cars_edge_detection_plugin/pipelines/__init__.py
./cars_edge_detection_plugin/pipelines/edge_detection/__init__.py
./cars_edge_detection_plugin/pipelines/edge_detection/edge_detection_pipeline.py
cars_edge_detection_plugin/__init__.py
cars_edge_detection_plugin/download_models.py
cars_edge_detection_plugin.egg-info/PKG-INFO
cars_edge_detection_plugin.egg-info/SOURCES.txt
cars_edge_detection_plugin.egg-info/dependency_links.txt
cars_edge_detection_plugin.egg-info/entry_points.txt
cars_edge_detection_plugin.egg-info/requires.txt
cars_edge_detection_plugin.egg-info/top_level.txt
cars_edge_detection_plugin/applications/__init__.py
cars_edge_detection_plugin/applications/depth_map_generation/__init__.py
cars_edge_detection_plugin/applications/depth_map_generation/abstract_depth_map_generation_app.py
cars_edge_detection_plugin/applications/depth_map_generation/moge2_depth_generation.py
cars_edge_detection_plugin/applications/depth_map_generation/moge2_depth_generation_tools.py
cars_edge_detection_plugin/applications/depth_map_generation/moge2_wrapper.py
cars_edge_detection_plugin/pipelines/__init__.py
cars_edge_detection_plugin/pipelines/edge_detection/__init__.py
cars_edge_detection_plugin/pipelines/edge_detection/edge_detection_pipeline.py
tests/__init__.py
tests/helpers.py
tests/test_end2end.py
tests/applications/depth_map_generation/test_moge2_depth_generation_tools.py
tests/applications/depth_map_generation/test_moge2_wrapper.py
tests/data/input/data_gizeh_crop/configfile_crop.json
tests/data/input/data_gizeh_crop/img1_crop.geom
tests/data/input/data_gizeh_crop/img1_crop.tif
tests/data/input/data_gizeh_crop/img2_crop.geom
tests/data/input/data_gizeh_crop/img2_crop.tif
tests/data/ref_output/data_gizeh_crop/end2end_gizeh_crop_depth.tif
tests/data/ref_output/data_gizeh_crop/end2end_gizeh_crop_edges.tif
tests/data/ref_output/data_gizeh_crop/end2end_gizeh_crop_normals.tif
tests/data/ref_output/data_gizeh_crop/end2end_gizeh_crop_tile_id.tif
third_party/MoGe/moge/__init__.py
third_party/MoGe/moge/model/__init__.py
third_party/MoGe/moge/model/modules.py
third_party/MoGe/moge/model/utils.py
third_party/MoGe/moge/model/v1.py
third_party/MoGe/moge/model/v2.py
third_party/MoGe/moge/model/dinov2/__init__.py
third_party/MoGe/moge/model/dinov2/hub/__init__.py
third_party/MoGe/moge/model/dinov2/hub/backbones.py
third_party/MoGe/moge/model/dinov2/hub/utils.py
third_party/MoGe/moge/model/dinov2/layers/__init__.py
third_party/MoGe/moge/model/dinov2/layers/attention.py
third_party/MoGe/moge/model/dinov2/layers/block.py
third_party/MoGe/moge/model/dinov2/layers/dino_head.py
third_party/MoGe/moge/model/dinov2/layers/drop_path.py
third_party/MoGe/moge/model/dinov2/layers/layer_scale.py
third_party/MoGe/moge/model/dinov2/layers/mlp.py
third_party/MoGe/moge/model/dinov2/layers/patch_embed.py
third_party/MoGe/moge/model/dinov2/layers/swiglu_ffn.py
third_party/MoGe/moge/model/dinov2/models/__init__.py
third_party/MoGe/moge/model/dinov2/models/vision_transformer.py
third_party/MoGe/moge/model/dinov2/utils/__init__.py
third_party/MoGe/moge/model/dinov2/utils/cluster.py
third_party/MoGe/moge/model/dinov2/utils/config.py
third_party/MoGe/moge/model/dinov2/utils/dtype.py
third_party/MoGe/moge/model/dinov2/utils/param_groups.py
third_party/MoGe/moge/model/dinov2/utils/utils.py
third_party/MoGe/moge/scripts/__init__.py
third_party/MoGe/moge/scripts/app.py
third_party/MoGe/moge/scripts/cli.py
third_party/MoGe/moge/scripts/eval_baseline.py
third_party/MoGe/moge/scripts/infer.py
third_party/MoGe/moge/scripts/infer_baseline.py
third_party/MoGe/moge/scripts/infer_panorama.py
third_party/MoGe/moge/scripts/train.py
third_party/MoGe/moge/scripts/vis_data.py
third_party/MoGe/moge/test/__init__.py
third_party/MoGe/moge/test/baseline.py
third_party/MoGe/moge/test/dataloader.py
third_party/MoGe/moge/test/metrics.py
third_party/MoGe/moge/train/__init__.py
third_party/MoGe/moge/train/dataloader.py
third_party/MoGe/moge/train/losses.py
third_party/MoGe/moge/train/utils.py
third_party/MoGe/moge/utils/__init__.py
third_party/MoGe/moge/utils/alignment.py
third_party/MoGe/moge/utils/data_augmentation.py
third_party/MoGe/moge/utils/download.py
third_party/MoGe/moge/utils/geometry_numpy.py
third_party/MoGe/moge/utils/geometry_torch.py
third_party/MoGe/moge/utils/io.py
third_party/MoGe/moge/utils/panorama.py
third_party/MoGe/moge/utils/tools.py
third_party/MoGe/moge/utils/vis.py
third_party/MoGe/moge/utils/webfile.py
third_party/MoGe/moge/utils/webzipfile.py
third_party/MoGe/third_party/pipeline/pipeline/__init__.py
third_party/MoGe/third_party/pipeline/pipeline/components.py
third_party/MoGe/third_party/utils3d/utils3d/__init__.py
third_party/MoGe/third_party/utils3d/utils3d/helpers.py
third_party/MoGe/third_party/utils3d/utils3d/interface/__init__.py
third_party/MoGe/third_party/utils3d/utils3d/interface/__init__.pyi
third_party/MoGe/third_party/utils3d/utils3d/numpy/__init__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/_io.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/_maps.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/_mesh.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/_rasterization.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/_transforms.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/_utils.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/helpers.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/maps.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/mesh.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/rasterization.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/spline.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/transforms.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/utils.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/io/__init__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/io/_colmap.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/io/_obj.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/io/colmap.py
third_party/MoGe/third_party/utils3d/utils3d/numpy/io/obj.py
third_party/MoGe/third_party/utils3d/utils3d/torch/__init__.py
third_party/MoGe/third_party/utils3d/utils3d/torch/_maps.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/torch/_mesh.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/torch/_rasterization.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/torch/_transforms.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/torch/_utils.__all__.py
third_party/MoGe/third_party/utils3d/utils3d/torch/helpers.py
third_party/MoGe/third_party/utils3d/utils3d/torch/maps.py
third_party/MoGe/third_party/utils3d/utils3d/torch/mesh.py
third_party/MoGe/third_party/utils3d/utils3d/torch/rasterization.py
third_party/MoGe/third_party/utils3d/utils3d/torch/transforms.py
third_party/MoGe/third_party/utils3d/utils3d/torch/utils.py