Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,12 +11,12 @@ Character_FOLDER = "./Cartoon_Characters"
|
|
11 |
celebs = {os.path.splitext(file)[0]: os.path.join(Character_FOLDER, file) for file in os.listdir(Character_FOLDER)}
|
12 |
|
13 |
# Define pixel sizes for different levels of clarity
|
14 |
-
PIXEL_SIZES = [
|
15 |
|
16 |
# Initialize global variables
|
17 |
current_image = None
|
18 |
current_name = None
|
19 |
-
current_pixel_size =
|
20 |
used_images = set() # Track used images
|
21 |
|
22 |
# Function to pixelate an image
|
@@ -68,8 +68,8 @@ def reveal_answer():
|
|
68 |
|
69 |
# Create the Gradio interface
|
70 |
with gr.Blocks(theme=gr.themes.Ocean()) as demo:
|
71 |
-
gr.Markdown("# 🎭 Guess the
|
72 |
-
gr.Markdown("Can you identify the
|
73 |
|
74 |
with gr.Row():
|
75 |
pixelated_image = gr.Image(type="pil", label="Pixelated Image")
|
|
|
11 |
celebs = {os.path.splitext(file)[0]: os.path.join(Character_FOLDER, file) for file in os.listdir(Character_FOLDER)}
|
12 |
|
13 |
# Define pixel sizes for different levels of clarity
|
14 |
+
PIXEL_SIZES = [64, 48, 32, 24, 16, 12, 8, 4, 2]
|
15 |
|
16 |
# Initialize global variables
|
17 |
current_image = None
|
18 |
current_name = None
|
19 |
+
current_pixel_size = 96
|
20 |
used_images = set() # Track used images
|
21 |
|
22 |
# Function to pixelate an image
|
|
|
68 |
|
69 |
# Create the Gradio interface
|
70 |
with gr.Blocks(theme=gr.themes.Ocean()) as demo:
|
71 |
+
gr.Markdown("# 🎭 Guess the Chartoon Character Game!")
|
72 |
+
gr.Markdown("Can you identify the Cartoon Characters as the image becomes clearer?")
|
73 |
|
74 |
with gr.Row():
|
75 |
pixelated_image = gr.Image(type="pil", label="Pixelated Image")
|