Spaces:
Sleeping
Sleeping
Vela
commited on
Commit
·
4d9c27e
1
Parent(s):
750d172
modified
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ if uploaded_file:
|
|
13 |
st.image(image, caption="Uploaded Image", width=500)
|
14 |
|
15 |
file_path = image_conversion.get_file_path(uploaded_file)
|
16 |
-
selected_option = st.selectbox("Choose the following",["","Rotate","Change to RGB", "Change to BGR", "Change to Grayscale","Increase Brightness"])
|
17 |
option = selected_option.replace(" ","_").lower()
|
18 |
image_conversion.display_converted_image(st, option, file_path)
|
19 |
|
|
|
13 |
st.image(image, caption="Uploaded Image", width=500)
|
14 |
|
15 |
file_path = image_conversion.get_file_path(uploaded_file)
|
16 |
+
selected_option = st.selectbox("Choose the following",["","Rotate","Change to RGB", "Change to BGR", "Change to Grayscale","Increase Brightness","Blur Image"])
|
17 |
option = selected_option.replace(" ","_").lower()
|
18 |
image_conversion.display_converted_image(st, option, file_path)
|
19 |
|