Jangai commited on
Commit
2fd0f3a
·
verified ·
1 Parent(s): 0cd4892

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -13
app.py CHANGED
@@ -1,18 +1,29 @@
1
  import gradio as gr
 
 
 
2
 
3
- def display_sketch(sketch):
4
- return sketch
5
 
6
- # Create a sketchpad interface
7
- sketchpad = gr.Sketchpad(label="Draw Something")
8
- output_image = gr.Image(label="Your Sketch")
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
- # Define the interface
11
- interface = gr.Interface(
12
- fn=display_sketch,
13
- inputs=sketchpad,
14
- outputs=output_image
15
- )
16
 
17
- # Launch the interface
18
- interface.launch()
 
1
  import gradio as gr
2
+ import numpy as np
3
+ import matplotlib.pyplot as plt
4
+ import logging
5
 
6
+ logging.basicConfig(level=logging.DEBUG)
 
7
 
8
+ def display_sketch(sketch):
9
+ try:
10
+ image_data = np.array(sketch) # Convert the dict data to a numpy array
11
+ logging.debug(f"Image data type: {type(image_data)}") # Log the type of image data
12
+ logging.debug(f"Image data shape: {image_data.shape}") # Log the shape of image data
13
+
14
+ # Plot the image
15
+ fig, ax = plt.subplots()
16
+ ax.imshow(image_data, cmap='gray')
17
+ plt.axis('off')
18
+ plt.savefig("/mnt/data/output.png", bbox_inches='tight')
19
+ return "/mnt/data/output.png"
20
+ except Exception as e:
21
+ logging.error(f"Error processing sketch: {e}")
22
+ return str(e)
23
 
24
+ with gr.Blocks() as demo:
25
+ sketchpad = gr.Sketchpad(label="Draw Something", tool="sketch")
26
+ output_image = gr.Image(label="Your Sketch")
27
+ sketchpad.submit(display_sketch, inputs=sketchpad, outputs=output_image)
 
 
28
 
29
+ demo.launch()