├── .gitattributes ├── .gitignore ├── Config ├── DefaultEditor.ini ├── DefaultEngine.ini ├── DefaultGame.ini └── DefaultInput.ini ├── Content ├── Common │ ├── M_NaniteTess.uasset │ ├── MediaPlayer_webcam.uasset │ ├── MediaTexture_webcam.uasset │ ├── MediaTexture_webcam_Mat.uasset │ ├── Monitor.uasset │ ├── NanitePlane.uasset │ └── UI_grayscale_Mat.uasset ├── DepthAnythingDemo │ ├── DepthAnythingDemo.umap │ ├── DepthAnythingModelSize.uasset │ └── DepthEstimator_DepthAnything.uasset └── Movies │ ├── TestVideo.uasset │ └── TestVideo.webm ├── DepthAnythingDemo.uproject ├── LICENSE ├── README.md └── Source └── ThirdParty └── Models ├── NOTICE └── depth_anything_vits14_pre.onnx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | [/Script/AdvancedPreviewScene.SharedProfiles] 2 | 3 | -------------------------------------------------------------------------------- /Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Config/DefaultInput.ini -------------------------------------------------------------------------------- /Content/Common/M_NaniteTess.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/M_NaniteTess.uasset -------------------------------------------------------------------------------- /Content/Common/MediaPlayer_webcam.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/MediaPlayer_webcam.uasset -------------------------------------------------------------------------------- /Content/Common/MediaTexture_webcam.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/MediaTexture_webcam.uasset -------------------------------------------------------------------------------- /Content/Common/MediaTexture_webcam_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/MediaTexture_webcam_Mat.uasset -------------------------------------------------------------------------------- /Content/Common/Monitor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/Monitor.uasset -------------------------------------------------------------------------------- /Content/Common/NanitePlane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/NanitePlane.uasset -------------------------------------------------------------------------------- /Content/Common/UI_grayscale_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Common/UI_grayscale_Mat.uasset -------------------------------------------------------------------------------- /Content/DepthAnythingDemo/DepthAnythingDemo.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/DepthAnythingDemo/DepthAnythingDemo.umap -------------------------------------------------------------------------------- /Content/DepthAnythingDemo/DepthAnythingModelSize.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/DepthAnythingDemo/DepthAnythingModelSize.uasset -------------------------------------------------------------------------------- /Content/DepthAnythingDemo/DepthEstimator_DepthAnything.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/DepthAnythingDemo/DepthEstimator_DepthAnything.uasset -------------------------------------------------------------------------------- /Content/Movies/TestVideo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Movies/TestVideo.uasset -------------------------------------------------------------------------------- /Content/Movies/TestVideo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Content/Movies/TestVideo.webm -------------------------------------------------------------------------------- /DepthAnythingDemo.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/DepthAnythingDemo.uproject -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/Models/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Source/ThirdParty/Models/NOTICE -------------------------------------------------------------------------------- /Source/ThirdParty/Models/depth_anything_vits14_pre.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akiya-Research-Institute/Depth-Anything-UE/HEAD/Source/ThirdParty/Models/depth_anything_vits14_pre.onnx --------------------------------------------------------------------------------