We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f536085 commit f8b942aCopy full SHA for f8b942a
packages/child-lab-visualization/pyproject.toml
@@ -7,7 +7,16 @@ authors = [
7
{ name = "Jan Smółka", email = "[email protected]" }
8
]
9
requires-python = ">=3.12.7"
10
-dependencies = []
+dependencies = [
11
+ "jaxtyping>=0.2.38",
12
+ "numpy>=1.26.4",
13
+ "torch>=2.6.0",
14
+ "viser>=0.2.23",
15
+ "depth-pro>=0.1.0",
16
+]
17
+
18
+[tool.uv.sources]
19
+depth-pro = { git = "https://github.com/child-lab-uj/depth-pro.git" }
20
21
[build-system]
22
requires = ["hatchling"]
packages/child-lab-visualization/src/child_lab_visualization/__main__.py
@@ -0,0 +1,13 @@
1
+import viser
2
3
4
+def draw_point_cloud(server: viser.ViserServer) -> None: ...
5
6
+def main() -> None:
+ server = viser.ViserServer()
+ draw_point_cloud(server)
+if __name__ == '__main__':
+ main()
0 commit comments