-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (16 loc) · 850 Bytes
/
__init__.py
File metadata and controls
19 lines (16 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from .nodes.depth_anything_tensorrt import DepthAnythingTensorrt, DepthAnythingTensorrtAdvanced
from .nodes.depth_map_display import DepthMapDisplay
from .nodes.engine_builder import DepthAnythingEngineBuilder
NODE_CLASS_MAPPINGS = {
"DepthAnythingTensorrt" : DepthAnythingTensorrt,
"DepthAnythingEngineBuilder" : DepthAnythingEngineBuilder,
"DepthAnythingTensorrtAdvanced" : DepthAnythingTensorrtAdvanced,
"DepthAnythingMapDisplay" : DepthMapDisplay,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"DepthAnythingTensorrt" : "Depth Anything Tensorrt ⚡",
"DepthAnythingEngineBuilder" : "Depth Anything Tensorrt Engine Builder ⚡",
"DepthAnythingTensorrtAdvanced" : "Depth Anything Tensorrt Advanced ⚡",
"DepthAnythingMapDisplay" : "Depth Map Display ⚡",
}
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']