Alesteba commited on
Commit
e858b0d
·
1 Parent(s): 0e42a9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -48,8 +48,8 @@ nerf_loaded = from_pretrained_keras("Alesteba/NeRF_ficus")
48
 
49
  # set the values of r theta phi
50
  r = 4.0
51
- theta = st.slider("Enter a value for Θ:", min_value=0.0, max_value=360.0)
52
- phi = st.slider("Enter a value for Phi:", min_value=0.0, max_value=360.0)
53
  # phi = -30.0
54
  color, depth = show_rendered_image(r, theta, phi)
55
 
 
48
 
49
  # set the values of r theta phi
50
  r = 4.0
51
+ theta = st.slider(min_value=0.0, max_value=360.0)
52
+ phi = st.slider(min_value=0.0, max_value=360.0)
53
  # phi = -30.0
54
  color, depth = show_rendered_image(r, theta, phi)
55