-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demonstrating nerf example with nerfacc #2
base: main
Are you sure you want to change the base?
Conversation
Screencast from 03-24-2023 08:13:27 PM.webm After the screencast I tried the new frame styling, so camera visual will look better than what's shown in the videos. Leave the tweaking for the future! |
client.add_gui_text("Info", initial_value=f"Client {id}", disabled=True) | ||
|
||
camera = client.get_camera() | ||
server.set_background_image(render_image_from_camera(camera)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI to support multiple clients, you can call client.set_background_image()
instead of server.set_background_image()
; this will send the message to just one client instead of every client 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right! Just fixed
8fb03b5
to
d5f8bda
Compare
5889b1b
to
3bf8cac
Compare
Oh this is pretty cool! Would it makes sense to have viser supported in nerfacc and put a link here? This would avoid copying that huge chain of code to this repo and make things clean here. |
401ab8e
to
0ed3c73
Compare
3f8725e
to
3e41b46
Compare
e970ae0
to
fbef89c
Compare
6ea47b3
to
7a6ab4a
Compare
dcd992b
to
cd3c214
Compare
Nerf example working. Currently just streaming with some hard-coded resolution.