Spaces:
Running
Running
File size: 449 Bytes
72945c4 decfd9e 72945c4 2cb98f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import rerun as rr
import numpy as np
import gradio as gr
def show_cube():
rr.init("my data")
positions = np.zeros((10, 3))
positions[:,0] = np.linspace(-10,10,10)
colors = np.zeros((10,3), dtype=np.uint8)
colors[:,0] = np.linspace(0,255,10)
rr.log("my_points", rr.Points3D(positions=positions, colors=colors, radii=0.5))
return rr.as_html()
gr.Interface(show_cube, inputs=None, outputs=["html"]).launch(share=True)
|