Alesteba commited on
Commit
34510b2
·
1 Parent(s): 833191a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -29,20 +29,17 @@ def show_rendered_image(r,theta,phi):
29
 
30
  # app.py text matter starts here
31
 
32
- st.title('NeRF:3D volumetric rendering with NeRF')
33
 
34
  from PIL import Image
35
 
36
  image = Image.open('./training(3).gif')
37
 
38
- st.markdown("Authors: [Aritra Roy Gosthipathy](https://twitter.com/ariG23498) and [Ritwik Raha](https://twitter.com/ritwik_raha)")
39
- st.markdown("## Description")
40
  st.markdown("[NeRF](https://arxiv.org/abs/2003.08934) proposes an ingenious way to synthesize novel views of a scene by modelling the volumetric scene function through a neural network.")
41
  st.markdown("![](https://github.com/alesteba/training_NeRF/blob/e89da9448b3993117c78532c14c7142970f0d8df/training(3).gif)")
42
  st.image(image, caption='Enter any caption here')
43
  st.markdown("## Interactive Demo")
44
 
45
-
46
  # download the model:
47
  # from my own model repo
48
 
 
29
 
30
  # app.py text matter starts here
31
 
32
+ st.title('3D volumetric rendering with NeRF - A concrete example, Ficus Dataset')
33
 
34
  from PIL import Image
35
 
36
  image = Image.open('./training(3).gif')
37
 
 
 
38
  st.markdown("[NeRF](https://arxiv.org/abs/2003.08934) proposes an ingenious way to synthesize novel views of a scene by modelling the volumetric scene function through a neural network.")
39
  st.markdown("![](https://github.com/alesteba/training_NeRF/blob/e89da9448b3993117c78532c14c7142970f0d8df/training(3).gif)")
40
  st.image(image, caption='Enter any caption here')
41
  st.markdown("## Interactive Demo")
42
 
 
43
  # download the model:
44
  # from my own model repo
45