Plsek commited on
Commit
0e2c46a
·
1 Parent(s): a075dcf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -243,8 +243,8 @@ _, colA, colB, colC, _ = st.columns([bordersize,1,1,1,bordersize])
243
 
244
  if uploaded_file is not None:
245
  # NORMALIZE IMAGE
246
- MIN = np.min(np.where(image == 0, 1, image))
247
- if MIN < 1: image = image / MIN
248
 
249
  image = np.log10(data+1)
250
  plot_image(image, scale)
 
243
 
244
  if uploaded_file is not None:
245
  # NORMALIZE IMAGE
246
+ MIN = np.min(np.where(data == 0, 1, data))
247
+ if MIN < 1: data = data / MIN
248
 
249
  image = np.log10(data+1)
250
  plot_image(image, scale)