ilessio-aiflowlab commited on
Commit
17166c7
·
verified ·
1 Parent(s): 5d5d1b4

Upload anima_module.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. anima_module.yaml +57 -0
anima_module.yaml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "1.0"
2
+
3
+ module:
4
+ name: nott
5
+ version: "0.1.0"
6
+ display_name: "NOTT — Thermal Depth Estimation and SLAM (T-RefNet)"
7
+ description: "Real-time depth estimation and visual SLAM from monocular thermal camera input for GPS-denied navigation"
8
+ category: perception.depth_estimation
9
+ license: Apache-2.0
10
+ paper: "Thermal Image Refinement with Depth Estimation (arXiv:2603.14998, Mar 2026)"
11
+
12
+ capabilities:
13
+ provides:
14
+ - type: depth_estimation
15
+ subtype: thermal_monocular
16
+ - type: slam
17
+ subtype: thermal_visual
18
+
19
+ interface:
20
+ inputs:
21
+ - name: thermal_image
22
+ ros2_type: sensor_msgs/msg/Image
23
+ outputs:
24
+ - name: depth_map
25
+ ros2_type: sensor_msgs/msg/Image
26
+ - name: pose
27
+ ros2_type: geometry_msgs/msg/PoseStamped
28
+
29
+ hardware:
30
+ platforms:
31
+ - name: linux_x86
32
+ backends: [onnxruntime_cuda, onnxruntime_cpu]
33
+ - name: nvidia_jetson
34
+ backends: [tensorrt, onnxruntime_cuda]
35
+
36
+ performance:
37
+ profiles:
38
+ - platform: linux_x86
39
+ model: nott-base
40
+ backend: onnxruntime_cuda
41
+ fps: 20
42
+ latency_p50_ms: 35
43
+
44
+ safety:
45
+ failure_mode: returns_empty
46
+ timeout_ms: 500
47
+ health_topic: /anima/nott/health
48
+
49
+ composability:
50
+ pairs_well_with:
51
+ - perception.slam
52
+ - defense.threat_detection
53
+ conflicts_with: []
54
+
55
+ container:
56
+ image: ghcr.io/robotflow-labs/anima-nott:0.1.0
57
+ port: 8104