원클릭으로
depth-anything-3
Depth Anything V3 — estimación de profundidad de estado del arte, zero-shot, para cualquier imagen/video.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Depth Anything V3 — estimación de profundidad de estado del arte, zero-shot, para cualquier imagen/video.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Catálogo de Addy Osmani de skills engineering para AI coding agents — 8 slash commands mapeados al SDLC (spec → plan → build → test → review → ship).
Generación de informes y documentos profesionales mediante LLM. Arquitectura prompt→LLM→HTML capítulo, plantillas por sección, integración con datos de appState, y patrón demo interactivo. Aplicable a PMST, informes técnicos, auditorías, y cualquier documento estructurado.
AI Engineering Hub — catálogo de proyectos y tutoriales de ingeniería de IA con Jupyter notebooks.
AI Website Cloner — genera clonaciones de sitios web completas con IA desde una URL.
AutoScraper — scraping web automático con IA, aprende patrones de selección y extrae datos sin código.
Baidu Unlimited OCR — OCR gratuito de alta calidad sin límites de uso.
| name | depth-anything-3 |
| description | Depth Anything V3 — estimación de profundidad de estado del arte, zero-shot, para cualquier imagen/video. |
| category | computer-vision |
Depth Anything V3 de ByteDance es un modelo de estimación de profundidad que ofrece:
git clone https://github.com/ByteDance-Seed/Depth-Anything-3.git
cd Depth-Anything-3
pip install -e .
# Descargar checkpoint
# https://huggingface.co/depth-anything/Depth-Anything-V3
from depth_anything_v3.dpt import DepthAnythingV3
# Cargar modelo
model_configs = {
'vits': {'encoder': 'vits', 'features': 64, 'out_channels': [48, 96, 192, 384]},
'vitb': {'encoder': 'vitb', 'features': 128, 'out_channels': [96, 192, 384, 768]},
'vitl': {'encoder': 'vitl', 'features': 256, 'out_channels': [256, 512, 1024, 1024]},
}
encoder = 'vitl' # vits, vitb, or vitl
model = DepthAnythingV3(**model_configs[encoder])
model.load_state_dict(torch.load(f'depth_anything_v3_{encoder}.pth'))
model.eval()
# Predecir profundidad
depth = model.predict(image)
github.com/ByteDance-Seed/Depth-Anything-3 (5K⭐)https://huggingface.co/depth-anything