Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ celeb_folder = {
|
|
25 |
"Dhanush" : "./Celebs/Dhanush.jpg",
|
26 |
}
|
27 |
|
28 |
-
|
29 |
def Clear(prev_size, photo=celeb_list[1], folder=celeb_folder, next=False):
|
30 |
if next:
|
31 |
index = celeb_list.index(photo) + 1
|
@@ -37,7 +37,7 @@ def Clear(prev_size, photo=celeb_list[1], folder=celeb_folder, next=False):
|
|
37 |
|
38 |
for curr_size in pixel_sizes:
|
39 |
if curr_size<prev_size:
|
40 |
-
return pixelate(img,
|
41 |
|
42 |
|
43 |
# # Display the pixelated images progressively
|
@@ -48,6 +48,8 @@ def Clear(prev_size, photo=celeb_list[1], folder=celeb_folder, next=False):
|
|
48 |
# plt.title(f"Guess the Portrait - Level {idx + 1}")
|
49 |
# plt.show()
|
50 |
|
|
|
|
|
51 |
with gr.Blocks(theme=gr.themes.Ocean()) as demo:
|
52 |
gr.Markdown(MARKDOWN)
|
53 |
with gr.Row():
|
@@ -59,7 +61,7 @@ with gr.Blocks(theme=gr.themes.Ocean()) as demo:
|
|
59 |
Clear_button = gr.Button(value='Clear', variant='primary')
|
60 |
Next_button = gr.Button(value='Next', variant='secondary')
|
61 |
|
62 |
-
Clear_button.click(fn=Clear, inputs=[
|
63 |
-
Next_button.click(fn=Clear, inputs=[
|
64 |
|
65 |
demo.launch(debug=False, show_error=True)
|
|
|
25 |
"Dhanush" : "./Celebs/Dhanush.jpg",
|
26 |
}
|
27 |
|
28 |
+
curr_size = 256
|
29 |
def Clear(prev_size, photo=celeb_list[1], folder=celeb_folder, next=False):
|
30 |
if next:
|
31 |
index = celeb_list.index(photo) + 1
|
|
|
37 |
|
38 |
for curr_size in pixel_sizes:
|
39 |
if curr_size<prev_size:
|
40 |
+
return pixelate(img, curr_size), photo, curr_size
|
41 |
|
42 |
|
43 |
# # Display the pixelated images progressively
|
|
|
48 |
# plt.title(f"Guess the Portrait - Level {idx + 1}")
|
49 |
# plt.show()
|
50 |
|
51 |
+
|
52 |
+
MARKDOWN = "Guess the Cartoon Character before the Image becomes fully clear"
|
53 |
with gr.Blocks(theme=gr.themes.Ocean()) as demo:
|
54 |
gr.Markdown(MARKDOWN)
|
55 |
with gr.Row():
|
|
|
61 |
Clear_button = gr.Button(value='Clear', variant='primary')
|
62 |
Next_button = gr.Button(value='Next', variant='secondary')
|
63 |
|
64 |
+
Clear_button.click(fn=Clear, inputs=[prev_size==curr_size], outputs=[pixelated_image, answer, curr_size])
|
65 |
+
Next_button.click(fn=Clear, inputs=[prev_size==curr_size, photo==answer, next==True], outputs=[pixelated_image, answer, prev_size])
|
66 |
|
67 |
demo.launch(debug=False, show_error=True)
|