Plsek commited on
Commit
f3966b1
·
1 Parent(s): d65b02b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -21
app.py CHANGED
@@ -93,24 +93,27 @@ if uploaded_file is not None:
93
  plot_image(np.log10(data+1), scale)
94
 
95
  with col2:
96
- st.button('Detect cavities')
97
- data, wcs = cut(data, wcs, scale=scale)
98
-
99
- image = np.log10(data+1)
100
-
101
- y_pred = 0
102
- for j in [0,1,2,3]:
103
- rotated = np.rot90(image, j)
104
- pred = model.predict(rotated.reshape(1, 128, 128, 1)).reshape(128 ,128)
105
- pred = np.rot90(pred, -j)
106
- y_pred += pred / 4
107
-
108
- plot_prediction(y_pred)
109
-
110
- # ccd = CCDData(pred, unit="adu", wcs=wcs)
111
- # ccd.write(f"predicted.fits", overwrite=True)
112
-
113
- # if st.button('Download FITS File'):
114
- # with open('predicted.fits', 'rb') as f:
115
- # data = f.read()
116
- # st.download_button(label="Download", data=data, file_name="predicted.fits", mime="application/octet-stream")
 
 
 
 
93
  plot_image(np.log10(data+1), scale)
94
 
95
  with col2:
96
+ if st.button('Detect cavities', disable=True):
97
+ data, wcs = cut(data, wcs, scale=scale)
98
+
99
+ image = np.log10(data+1)
100
+
101
+ y_pred = 0
102
+ for j in [0,1,2,3]:
103
+ rotated = np.rot90(image, j)
104
+ pred = model.predict(rotated.reshape(1, 128, 128, 1)).reshape(128 ,128)
105
+ pred = np.rot90(pred, -j)
106
+ y_pred += pred / 4
107
+
108
+ # Thresholding
109
+ y_pred = np.where(y_pred > 0.4, y_pred, 0)
110
+
111
+ plot_prediction(y_pred)
112
+
113
+ # ccd = CCDData(pred, unit="adu", wcs=wcs)
114
+ # ccd.write(f"predicted.fits", overwrite=True)
115
+
116
+ # if st.button('Download FITS File'):
117
+ # with open('predicted.fits', 'rb') as f:
118
+ # data = f.read()
119
+ # st.download_button(label="Download", data=data, file_name="predicted.fits", mime="application/octet-stream")