Update app.py
Browse files
app.py
CHANGED
@@ -131,12 +131,12 @@ if uploaded_file is not None:
|
|
131 |
|
132 |
# Make two columns for plots
|
133 |
_, colA, colB, colC, _ = st.columns([bordersize,1,1,1,bordersize])
|
134 |
-
|
135 |
-
with colB:
|
136 |
-
threshold = st.slider("", 0.0, 1.0, 0.4, 0.05, label_visibility="hidden")
|
137 |
|
138 |
image = np.log10(data+1)
|
139 |
plot_image(image, scale)
|
|
|
|
|
|
|
140 |
|
141 |
if detect:
|
142 |
data, wcs = cut(data, wcs, scale=scale)
|
|
|
131 |
|
132 |
# Make two columns for plots
|
133 |
_, colA, colB, colC, _ = st.columns([bordersize,1,1,1,bordersize])
|
|
|
|
|
|
|
134 |
|
135 |
image = np.log10(data+1)
|
136 |
plot_image(image, scale)
|
137 |
+
|
138 |
+
with colB:
|
139 |
+
threshold = st.slider("", 0.0, 1.0, 0.4, 0.05, label_visibility="hidden")
|
140 |
|
141 |
if detect:
|
142 |
data, wcs = cut(data, wcs, scale=scale)
|