Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,10 +38,10 @@ enhancement_type = st.sidebar.selectbox(
|
|
| 38 |
|
| 39 |
st.sidebar.title("Detection")
|
| 40 |
uploaded_detection = st.sidebar.file_uploader("Upload image to detect", type=["png", "jpg", "jpeg", "dcm"])
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
|
| 46 |
H_detection = 224
|
| 47 |
W_detection = 224
|
|
|
|
| 38 |
|
| 39 |
st.sidebar.title("Detection")
|
| 40 |
uploaded_detection = st.sidebar.file_uploader("Upload image to detect", type=["png", "jpg", "jpeg", "dcm"])
|
| 41 |
+
enhancement_type = st.sidebar.selectbox(
|
| 42 |
+
"Enhancement Type",
|
| 43 |
+
["Invert", "High Pass Filter", "Unsharp Masking", "Histogram Equalization", "CLAHE"]
|
| 44 |
+
)
|
| 45 |
|
| 46 |
H_detection = 224
|
| 47 |
W_detection = 224
|