Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -29,10 +29,10 @@ with gr.Blocks() as generated_output:
|
|
29 |
with gr.Column():
|
30 |
gr.Interface(sepia, gr.Image(), "image")
|
31 |
with gr.Row():
|
32 |
-
|
33 |
gr.Interface(sepia,
|
34 |
inputs = input_img,
|
35 |
-
outputs =
|
36 |
|
37 |
#with gr.Blocks() as generated_output:
|
38 |
# inp = gr.Interface(sepia, gr.Image(), "image")
|
|
|
29 |
with gr.Column():
|
30 |
gr.Interface(sepia, gr.Image(), "image")
|
31 |
with gr.Row():
|
32 |
+
output_sepia = gr.Textbox(label="Processed RGB Values")
|
33 |
gr.Interface(sepia,
|
34 |
inputs = input_img,
|
35 |
+
outputs = [sepia_img, output_sepia]
|
36 |
|
37 |
#with gr.Blocks() as generated_output:
|
38 |
# inp = gr.Interface(sepia, gr.Image(), "image")
|