Plsek commited on
Commit
58320fd
·
1 Parent(s): ce0005c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -29,14 +29,16 @@ def plot_image(image_array, scale):
29
  plt.gca().add_patch(Rectangle((x0, x0), scale*128, scale*128, linewidth=1, edgecolor='w', facecolor='none'))
30
 
31
  plt.axis('off')
32
- with col1: st.pyplot()
 
33
 
34
  # Define function to plot the prediction
35
  def plot_prediction(pred):
36
  plt.figure(figsize=(4, 4))
37
  plt.imshow(pred, origin="lower")
38
  plt.axis('off')
39
- with col2: st.pyplot()
 
40
 
41
  def cut(data0, wcs0, scale=1):
42
  shape = data0.shape[0]
@@ -67,12 +69,12 @@ if uploaded_file is not None:
67
  data = hdul[0].data
68
  wcs = WCS(hdul[0].header)
69
 
70
- max_scale = data // 128
71
  # Add a slider to change the scale
72
  with col1:
 
73
  scale = st.slider("Scale", 1, max_scale, 1, 1)
74
 
75
- plot_image(np.log10(data+1), scale)
76
 
77
  with col2:
78
  if st.button('Detect cavities'):
 
29
  plt.gca().add_patch(Rectangle((x0, x0), scale*128, scale*128, linewidth=1, edgecolor='w', facecolor='none'))
30
 
31
  plt.axis('off')
32
+ # with col1:
33
+ st.pyplot()
34
 
35
  # Define function to plot the prediction
36
  def plot_prediction(pred):
37
  plt.figure(figsize=(4, 4))
38
  plt.imshow(pred, origin="lower")
39
  plt.axis('off')
40
+ # with col2:
41
+ st.pyplot()
42
 
43
  def cut(data0, wcs0, scale=1):
44
  shape = data0.shape[0]
 
69
  data = hdul[0].data
70
  wcs = WCS(hdul[0].header)
71
 
 
72
  # Add a slider to change the scale
73
  with col1:
74
+ max_scale = int(data // 128)
75
  scale = st.slider("Scale", 1, max_scale, 1, 1)
76
 
77
+ plot_image(np.log10(data+1), scale)
78
 
79
  with col2:
80
  if st.button('Detect cavities'):