Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ _, col, _ = st.columns([bordersize, 3, bordersize])
|
|
28 |
with col:
|
29 |
st.markdown("# Cavity Detection Tool")
|
30 |
|
31 |
-
st.markdown("Cavity Detection Tool (CADET) is a machine learning pipeline trained to detect X-ray cavities from noisy Chandra images of early-type galaxies
|
32 |
|
33 |
st.markdown("Input images should be centered at the centre of the galaxy and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)).")
|
34 |
|
@@ -149,7 +149,11 @@ if uploaded_file is not None:
|
|
149 |
pred = np.rot90(pred, -j)
|
150 |
y_pred += pred / 4
|
151 |
|
|
|
|
|
152 |
if detect or bool(threshold):
|
|
|
|
|
153 |
pred = np.where(y_pred > threshold, y_pred, 0)
|
154 |
|
155 |
plot_prediction(pred)
|
|
|
28 |
with col:
|
29 |
st.markdown("# Cavity Detection Tool")
|
30 |
|
31 |
+
st.markdown("Cavity Detection Tool (CADET) is a machine learning pipeline trained to detect X-ray cavities from noisy Chandra images of early-type galaxies.<br> To use this tool: upload your image, select the scale of interest, and make a prediction!<br> If you use this tool for your research, please cite [Plšek et al. 2023](https://arxiv.org/abs/2304.05457)")
|
32 |
|
33 |
st.markdown("Input images should be centered at the centre of the galaxy and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)).")
|
34 |
|
|
|
149 |
pred = np.rot90(pred, -j)
|
150 |
y_pred += pred / 4
|
151 |
|
152 |
+
np.save(y_pred, "pred.npy")
|
153 |
+
|
154 |
if detect or bool(threshold):
|
155 |
+
y_pred = np.load("pred.npy")
|
156 |
+
|
157 |
pred = np.where(y_pred > threshold, y_pred, 0)
|
158 |
|
159 |
plot_prediction(pred)
|