forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.toml
178 lines (169 loc) · 3.84 KB
/
manifest.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#:schema ./schema.json
# Examples listed in this manifest will appear on our website.
# This has no effect whatsoever on whether they appear in the app itself.
#
# To add examples to the app itself, use the `channel` attribute in the example's readme's frontmatter.
# See <https://github.com/rerun-io/rerun/tree/main/examples#adding-a-new-example> for more information.
[categories.spatial-computing]
order = 1
title = "Spatial computing and XR"
prelude = """
Examples related to spatial computing, augmented reality, virtual reality, and mixed reality.
"""
examples = [
# display order, most interesting first
"arkit_scenes",
"limap",
"objectron",
"simplerecon",
"slahmr",
"vrs",
"widebaseline",
"arflow",
]
[categories.robotics]
order = 2
title = "Robotics"
prelude = """
Examples related to robotics, autonomous systems, and interfacing with sensor hardware.
"""
examples = [
# display order, most interesting first
"droid_dataset",
"ros_node",
"chess_robby_fischer",
"nuscenes_dataset",
"ros2_bridge",
"ros_bridge",
"kiss-icp",
"urdf_loader",
"live_depth_sensor",
"lidar",
"rrt_star",
"rgbd",
"nv12",
]
[categories.generative-vision]
order = 3
title = "Diffusion models, LLMs, and machine learning"
prelude = """
Examples using machine learning and generative AI methods such as diffusion and LLMs.
"""
examples = [
# display order, most interesting first
"controlnet",
"depth_guided_stable_diffusion",
"vista",
"mcc",
"lerobot",
"depth_compare",
"mini_nvs_solver",
"shape_pointe",
"llm_embedding_ner",
"tfrecord_loader",
]
[categories.video-image]
order = 4
title = "Image and video understanding"
prelude = """
Examples related to image and video processing, highlighting Rerun's 2D capabilities.
"""
examples = [
# display order, most interesting first
"detect_and_track_objects",
"face_tracking",
"sam2_depthanything",
"human_pose_tracking",
"gesture_detection",
"ocr",
"live_camera_edge_detection",
"segment_anything_model",
"tapir",
"ml_depth_pro",
]
[categories.3d-reconstruction] # NOLINT
order = 5
title = "3D reconstruction and modelling"
prelude = """
SLAM, photogrammetry and other 3D modelling examples.
"""
examples = [
# display order, most interesting first
"structure_from_motion",
"open_photogrammetry_format",
"kiss-icp",
"differentiable_blocks_world",
"stereo_vision_slam",
"glomap",
"hloc_glomap",
"instant_splat",
"signed_distance_fields",
"raw_mesh",
]
[categories.integrations]
order = 6
title = "Integrations"
prelude = """
Integration with 3rd party tools, formats, libraries, and APIs.
"""
examples = [
# display order, most interesting first
"ros_node",
"ros2_bridge",
"ros_bridge",
"notebook",
"notebook_neural_field_2d",
"urdf_loader",
"vrs",
"revy",
"tfrecord_loader",
"eigen_opencv",
"dicom_mri",
"blueprint_stocks",
"arflow",
"air_traffic_data",
]
[categories.feature-showcase]
order = 7
title = "Feature showcase"
prelude = """
Showcase basic usage and specific features of Rerun.
"""
examples = [
# display order, most interesting first
"notebook",
"clock",
"dna",
"graphs",
"log_file",
"openstreetmap_data",
"minimal",
"multiprocess_logging",
"multithreading",
"plots",
"live_scrolling_plot",
"raw_mesh",
"air_traffic_data",
]
# These are examples that we explicitly exclude from our website. You can check that all examples are either included
# or explicitly excluded by running `python scripts/check_example_manifest_coverage.py`.
[ignored]
examples = [
"_empty_rerun_sdk",
"all_examples",
"custom_collection_adapter",
"custom_data_loader",
"custom_view",
"custom_store_subscriber",
"dataframe_query",
"drone_lidar",
"extend_viewer_ui",
"external_data_loader",
"graph_lattice",
"incremental_logging",
"minimal_serve",
"shared_recording",
"spawn_viewer",
"stdio",
"template",
]