Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -32,8 +32,10 @@ st.title("""
|
|
32 |
Image Blurriness Occluded
|
33 |
""")
|
34 |
st.subheader("Prediction of Blur or NotBlur Image")
|
35 |
-
|
36 |
-
|
|
|
|
|
37 |
model_file_path = "mobile_net_occ.h5"
|
38 |
|
39 |
##Blurriness Features
|
|
|
32 |
Image Blurriness Occluded
|
33 |
""")
|
34 |
st.subheader("Prediction of Blur or NotBlur Image")
|
35 |
+
images = ["blur1.png","blurimg2.png","blurimg3.png","blurimg4.png","images_11.png"]
|
36 |
+
with st.sidebar:
|
37 |
+
st.write("choose an image")
|
38 |
+
clicked = st.image_select("",images,key='click_images')
|
39 |
model_file_path = "mobile_net_occ.h5"
|
40 |
|
41 |
##Blurriness Features
|