Spaces:
Sleeping
Sleeping
| """Depth estimation models for video processing.""" | |
| from .base import DepthEstimator, DepthResult | |
| from .model_loader import list_depth_estimators, load_depth_estimator | |
| __all__ = [ | |
| "DepthEstimator", | |
| "DepthResult", | |
| "load_depth_estimator", | |
| "list_depth_estimators", | |
| ] | |