├── .gitignore ├── README.md ├── README_zh.md ├── assets ├── architecture.png ├── depthanything-AC-video.gif └── teaser.png ├── configs └── depthanything_AC_vits.yaml ├── dataset ├── READEME_zh.md ├── README.md ├── semi_depth.py └── transform.py ├── depth_anything ├── dinov2.py ├── dinov2_layers │ ├── __init__.py │ ├── attention.py │ ├── block.py │ ├── drop_path.py │ ├── layer_scale.py │ ├── mlp.py │ ├── patch_embed.py │ └── swiglu_ffn.py ├── dpt.py ├── dpt_teacher.py └── util │ ├── blocksv1.py │ ├── blocksv2.py │ ├── priorgenerate.py │ └── transform.py ├── evaluate_depth.py ├── full_train.py ├── losses └── depth_anything_loss.py ├── partitions ├── DA2K │ └── val.txt ├── DA2K_blur │ └── val.txt ├── DA2K_dark │ └── val.txt ├── DA2K_fog │ └── val.txt ├── DA2K_snow │ └── val.txt ├── DIODE │ └── val.txt ├── ETH3D │ └── val.txt ├── drive_cloudy │ └── val.txt ├── drive_foggy │ └── val.txt ├── drive_rainy │ └── val.txt ├── kitti │ └── val.txt ├── kitti_c_dark │ └── val.txt ├── kitti_c_fog │ └── val.txt ├── kitti_c_gaussian │ └── val.txt ├── kitti_c_motion │ └── val.txt ├── kitti_c_snow │ └── val.txt ├── nuscene │ └── val.txt ├── nyu │ └── val.txt ├── robotcar │ └── val.txt ├── sintel │ └── val.txt └── synthetic │ └── full │ └── all.txt ├── perturbation └── perturbation.py ├── requirements.txt ├── tools ├── README.md ├── README_zh.md ├── infer.py ├── train.sh └── val.sh ├── torchhub ├── README.md └── facebookresearch_dinov2_main │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── MODEL_CARD.md │ ├── README.md │ ├── conda.yaml │ ├── dinov2 │ ├── __init__.py │ ├── configs │ │ ├── __init__.py │ │ ├── eval │ │ │ ├── vitb14_pretrain.yaml │ │ │ ├── vitg14_pretrain.yaml │ │ │ ├── vitl14_pretrain.yaml │ │ │ └── vits14_pretrain.yaml │ │ ├── ssl_default_config.yaml │ │ └── train │ │ │ ├── vitg14.yaml │ │ │ ├── vitl14.yaml │ │ │ └── vitl16_short.yaml │ ├── data │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── augmentations.py │ │ ├── collate.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── decoders.py │ │ │ ├── extended.py │ │ │ ├── image_net.py │ │ │ └── image_net_22k.py │ │ ├── loaders.py │ │ ├── masking.py │ │ ├── samplers.py │ │ └── transforms.py │ ├── distributed │ │ └── __init__.py │ ├── eval │ │ ├── __init__.py │ │ ├── knn.py │ │ ├── linear.py │ │ ├── log_regression.py │ │ ├── metrics.py │ │ ├── setup.py │ │ └── utils.py │ ├── fsdp │ │ └── __init__.py │ ├── layers │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── block.py │ │ ├── dino_head.py │ │ ├── drop_path.py │ │ ├── layer_scale.py │ │ ├── mlp.py │ │ ├── patch_embed.py │ │ └── swiglu_ffn.py │ ├── logging │ │ ├── __init__.py │ │ └── helpers.py │ ├── loss │ │ ├── __init__.py │ │ ├── dino_clstoken_loss.py │ │ ├── ibot_patch_loss.py │ │ └── koleo_loss.py │ ├── models │ │ ├── __init__.py │ │ └── vision_transformer.py │ ├── run │ │ ├── __init__.py │ │ ├── eval │ │ │ ├── knn.py │ │ │ ├── linear.py │ │ │ └── log_regression.py │ │ ├── submit.py │ │ └── train │ │ │ └── train.py │ ├── train │ │ ├── __init__.py │ │ ├── ssl_meta_arch.py │ │ └── train.py │ └── utils │ │ ├── __init__.py │ │ ├── cluster.py │ │ ├── config.py │ │ ├── dtype.py │ │ ├── param_groups.py │ │ └── utils.py │ ├── hubconf.py │ ├── pyproject.toml │ ├── requirements-dev.txt │ ├── requirements.txt │ ├── scripts │ └── lint.sh │ ├── setup.cfg │ ├── setup.py │ ├── utils.py │ └── vision_transformer.py ├── toyset ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png └── util ├── dist_helper.py ├── utils.py └── visualize_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/README_zh.md -------------------------------------------------------------------------------- /assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/assets/architecture.png -------------------------------------------------------------------------------- /assets/depthanything-AC-video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/assets/depthanything-AC-video.gif -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /configs/depthanything_AC_vits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/configs/depthanything_AC_vits.yaml -------------------------------------------------------------------------------- /dataset/READEME_zh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset/semi_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/dataset/semi_depth.py -------------------------------------------------------------------------------- /dataset/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/dataset/transform.py -------------------------------------------------------------------------------- /depth_anything/dinov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/__init__.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/attention.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/block.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/drop_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/drop_path.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/layer_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/layer_scale.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/mlp.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/patch_embed.py -------------------------------------------------------------------------------- /depth_anything/dinov2_layers/swiglu_ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dinov2_layers/swiglu_ffn.py -------------------------------------------------------------------------------- /depth_anything/dpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dpt.py -------------------------------------------------------------------------------- /depth_anything/dpt_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/dpt_teacher.py -------------------------------------------------------------------------------- /depth_anything/util/blocksv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/util/blocksv1.py -------------------------------------------------------------------------------- /depth_anything/util/blocksv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/util/blocksv2.py -------------------------------------------------------------------------------- /depth_anything/util/priorgenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/util/priorgenerate.py -------------------------------------------------------------------------------- /depth_anything/util/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/depth_anything/util/transform.py -------------------------------------------------------------------------------- /evaluate_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/evaluate_depth.py -------------------------------------------------------------------------------- /full_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/full_train.py -------------------------------------------------------------------------------- /losses/depth_anything_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/losses/depth_anything_loss.py -------------------------------------------------------------------------------- /partitions/DA2K/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/DA2K/val.txt -------------------------------------------------------------------------------- /partitions/DA2K_blur/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/DA2K_blur/val.txt -------------------------------------------------------------------------------- /partitions/DA2K_dark/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/DA2K_dark/val.txt -------------------------------------------------------------------------------- /partitions/DA2K_fog/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/DA2K_fog/val.txt -------------------------------------------------------------------------------- /partitions/DA2K_snow/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/DA2K_snow/val.txt -------------------------------------------------------------------------------- /partitions/DIODE/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/DIODE/val.txt -------------------------------------------------------------------------------- /partitions/ETH3D/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/ETH3D/val.txt -------------------------------------------------------------------------------- /partitions/drive_cloudy/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/drive_cloudy/val.txt -------------------------------------------------------------------------------- /partitions/drive_foggy/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/drive_foggy/val.txt -------------------------------------------------------------------------------- /partitions/drive_rainy/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/drive_rainy/val.txt -------------------------------------------------------------------------------- /partitions/kitti/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/kitti/val.txt -------------------------------------------------------------------------------- /partitions/kitti_c_dark/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/kitti_c_dark/val.txt -------------------------------------------------------------------------------- /partitions/kitti_c_fog/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/kitti_c_fog/val.txt -------------------------------------------------------------------------------- /partitions/kitti_c_gaussian/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/kitti_c_gaussian/val.txt -------------------------------------------------------------------------------- /partitions/kitti_c_motion/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/kitti_c_motion/val.txt -------------------------------------------------------------------------------- /partitions/kitti_c_snow/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/kitti_c_snow/val.txt -------------------------------------------------------------------------------- /partitions/nuscene/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/nuscene/val.txt -------------------------------------------------------------------------------- /partitions/nyu/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/nyu/val.txt -------------------------------------------------------------------------------- /partitions/robotcar/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/robotcar/val.txt -------------------------------------------------------------------------------- /partitions/sintel/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/sintel/val.txt -------------------------------------------------------------------------------- /partitions/synthetic/full/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/partitions/synthetic/full/all.txt -------------------------------------------------------------------------------- /perturbation/perturbation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/perturbation/perturbation.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/tools/README_zh.md -------------------------------------------------------------------------------- /tools/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/tools/infer.py -------------------------------------------------------------------------------- /tools/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/tools/train.sh -------------------------------------------------------------------------------- /tools/val.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/tools/val.sh -------------------------------------------------------------------------------- /torchhub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/README.md -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/CONTRIBUTING.md -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/LICENSE -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/MODEL_CARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/MODEL_CARD.md -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/README.md -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/conda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/conda.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vitb14_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vitb14_pretrain.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vitg14_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vitg14_pretrain.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vitl14_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vitl14_pretrain.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vits14_pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/eval/vits14_pretrain.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/ssl_default_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/ssl_default_config.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/train/vitg14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/train/vitg14.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/train/vitl14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/train/vitl14.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/configs/train/vitl16_short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/configs/train/vitl16_short.yaml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/adapters.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/augmentations.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/collate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/collate.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/decoders.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/extended.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/image_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/image_net.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/image_net_22k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/datasets/image_net_22k.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/loaders.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/masking.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/samplers.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/data/transforms.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/distributed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/distributed/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/knn.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/linear.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/log_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/log_regression.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/metrics.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/setup.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/eval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/eval/utils.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/fsdp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/fsdp/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/attention.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/block.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/dino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/dino_head.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/drop_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/drop_path.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/layer_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/layer_scale.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/mlp.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/patch_embed.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/layers/swiglu_ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/layers/swiglu_ffn.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/logging/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/logging/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/logging/helpers.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/loss/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/loss/dino_clstoken_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/loss/dino_clstoken_loss.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/loss/ibot_patch_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/loss/ibot_patch_loss.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/loss/koleo_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/loss/koleo_loss.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/models/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/models/vision_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/models/vision_transformer.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/run/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/run/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/run/eval/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/run/eval/knn.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/run/eval/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/run/eval/linear.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/run/eval/log_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/run/eval/log_regression.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/run/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/run/submit.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/run/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/run/train/train.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/train/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/train/ssl_meta_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/train/ssl_meta_arch.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/train/train.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/utils/__init__.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/utils/cluster.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/utils/config.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/utils/dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/utils/dtype.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/utils/param_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/utils/param_groups.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/dinov2/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/dinov2/utils/utils.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/hubconf.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/pyproject.toml -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/requirements-dev.txt -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/requirements.txt -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/scripts/lint.sh -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/setup.cfg -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/setup.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/utils.py -------------------------------------------------------------------------------- /torchhub/facebookresearch_dinov2_main/vision_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/torchhub/facebookresearch_dinov2_main/vision_transformer.py -------------------------------------------------------------------------------- /toyset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/toyset/1.png -------------------------------------------------------------------------------- /toyset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/toyset/2.png -------------------------------------------------------------------------------- /toyset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/toyset/3.png -------------------------------------------------------------------------------- /toyset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/toyset/4.png -------------------------------------------------------------------------------- /toyset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/toyset/5.png -------------------------------------------------------------------------------- /toyset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/toyset/6.png -------------------------------------------------------------------------------- /util/dist_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/util/dist_helper.py -------------------------------------------------------------------------------- /util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/util/utils.py -------------------------------------------------------------------------------- /util/visualize_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVision-NKU/DepthAnythingAC/HEAD/util/visualize_utils.py --------------------------------------------------------------------------------