You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the ONNX models from models release and place them in the app/src/main/assets directory. The models are used by ONNX's OrtSession to load the computation graph and parameters in-memory.
Depth-Anything V1: Any one of the following models can be placed in the assets directory:
model.onnx: Depth-Anything module
model_fp16.onnx: float16 quantized version of model.onnx
Depth-Anything V2: Check the models-v2 release to download the models. The models come into two input sizes, 512 and
256. The model suffixed with _256 take an 256 * 256 sized image as input.
In DepthAnything.kt, make the following changes to
inputDims and outputDims, along with the name of the model given as an argument to context.assets.open,
classDepthAnything(context:Context) {
privateval ortEnvironment =OrtEnvironment.getEnvironment()
privateval ortSession =
ortEnvironment.createSession(context.assets.open("fused_model_uint8_256.onnx").readBytes())
privateval inputName = ortSession.inputNames.iterator().next()
// For '_256' suffixed modelsprivateval inputDim =256privateval outputDim =252// For other models// private val inputDim = 512// private val outputDim = 504// Other methods...
}
Connect a device to Android Studio, and select Run Application from the top navigation pane.
Useful Resources
Note
The app contains an ONNX model which was created by combining the pre/post-processing operations required
by Depth-Anything in a single model. To know more on how the model was built, refer this notebook.
MDE model trained on labeled data is used to annotate unlabeled images (62M) during training (semi-supervised learning, self learning or pseudo-labelling)
Teacher model trained on labeled images and then used to annotate unlabeled images. Student model trained on all images (labeled + teacher-annotated)
No performance gain observed, hence a more difficult optimization target was introduced for the student model. Unlabeled images are perturbed with (1) strong color distortions and (2) CutMix (used in image classification mostly)
Semantic assisted perception: Improve depth estimation with auxiliary semantic segmentation task, by using one shared encoder and two separate decoders
Citation
@misc{yang2024depth,
title={Depth Anything V2},
author={Lihe Yang and Bingyi Kang and Zilong Huang and Zhen Zhao and Xiaogang Xu and Jiashi Feng and Hengshuang Zhao},
year={2024},
eprint={2406.09414},
archivePrefix={arXiv},
primaryClass={id='cs.CV' full_name='Computer Vision and Pattern Recognition' is_active=True alt_name=None in_archive='cs' is_general=False description='Covers image processing, computer vision, pattern recognition, and scene understanding. Roughly includes material in ACM Subject Classes I.2.10, I.4, and I.5.'}
}
@article{depthanything,
title={Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data},
author={Yang, Lihe and Kang, Bingyi and Huang, Zilong and Xu, Xiaogang and Feng, Jiashi and Zhao, Hengshuang},
journal={arXiv:2401.10891},
year={2024}
}
@misc{oquab2023dinov2,
title={DINOv2: Learning Robust Visual Features without Supervision},
author={Oquab, Maxime and Darcet, Timothée and Moutakanni, Theo and Vo, Huy V. and Szafraniec, Marc and Khalidov, Vasil and Fernandez, Pierre and Haziza, Daniel and Massa, Francisco and El-Nouby, Alaaeldin and Howes, Russell and Huang, Po-Yao and Xu, Hu and Sharma, Vasu and Li, Shang-Wen and Galuba, Wojciech and Rabbat, Mike and Assran, Mido and Ballas, Nicolas and Synnaeve, Gabriel and Misra, Ishan and Jegou, Herve and Mairal, Julien and Labatut, Patrick and Joulin, Armand and Bojanowski, Piotr},
journal={arXiv:2304.07193},
year={2023}
}
About
An Android app running inference on Depth-Anything and Depth-Anything-V2