Depth Anything V2 is a depth estimation model that was released last year. It was developed by a team from TikTok and the University of Hong Kong (HKU). Almost ~600K synthetic, labelled images and over 62M real, unlabelled images were used in its training. In this post, I'll run Depth Anything V2's largest model against Maxar's satellite imagery 2025 of Bangkok, Thailand. My Workstation I'm using a 5.7 GHz AMD Ryzen 9 9950X CPU. It has 16 cores and 32 threads and 1.2 MB of L1, 16 MB of L2 and 64 MB of L3 cache. It has a liquid cooler attached and is housed in a spacious, full-sized Cooler Master HAF 700 computer case. The system has 96 GB of DDR5 RAM clocked at 4,800 MT/s and a 5th-generation, Crucial T700 4 TB NVMe M.2 SSD which can read at speeds up to 12,400 MB/s. There is a heatsink on the SSD to help keep its temperature down. This is my system's C drive. The system is powered by a 1,200-watt, fully modular Corsair Power Supply and is sat on an ASRock X870E Nova 90 Motherboard. I'm running Ubuntu 24 LTS via Microsoft's Ubuntu for Windows on Windows 11 Pro. In case you're wondering why I don't run a Linux-based desktop as my primary work environment, I'm still using an Nvidia GTX 1080 GPU which has better driver support on Windows and I use ArcGIS Pro from time to time which only supports Windows natively. Installing Prerequisites I'm running Esri's ArcGIS Pro 3.5. This version is their latest and was released last week. I'll also use Python 3.12.3 in this post. $ sudo add-apt-repository ppa:deadsnakes/ppa $ sudo apt update $ sudo apt install \ python3-pip \ python3.12-venv I'll clone DepthAnything's v2 repo. $ git clone https://github.com/DepthAnything/Depth-Anything-V2 \ ~/Depth-Anything-V2 I'll set up a Python Virtual Environment and install the latest GeoDeep release. $ python3 -m venv ~/.depth_anything_v2 $ source ~/.depth_anything_v2/bin/activate $ python3 -m pip install \ -r ~/Depth-Anything-V2/requirements.txt DepthAnything v2 has three different pre-tra...
First seen: 2025-05-23 11:29
Last seen: 2025-05-23 19:31