ritwikraha commited on
Commit
7538d81
·
1 Parent(s): b55e48d
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -253,8 +253,12 @@ st.write('Phi:', phi)
253
 
254
  color,depth = show_rendered_image(r,theta,phi)
255
 
256
- st.image(color, caption = "Color")
257
- st.image(depth, caption = "Depth")
 
 
 
 
258
 
259
 
260
 
 
253
 
254
  color,depth = show_rendered_image(r,theta,phi)
255
 
256
+ fig, ax = plt.subplots()
257
+ im = ax.imshow(color)
258
+ st.pyplot()
259
+
260
+ # st.image(color, caption = "Color")
261
+ # st.image(depth, caption = "Depth")
262
 
263
 
264