Update app.py
Browse files
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 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
|
|
|
|
|
|
|
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")
|