Spaces:
Runtime error
Runtime error
Commit
Β·
c63008c
1
Parent(s):
215c5da
add tab
Browse files- lut_processor.py +1 -1
- pixelize_processor.py +1 -1
- sharpen_processor.py +1 -1
- simple_effects_processor.py +1 -1
lut_processor.py
CHANGED
@@ -90,7 +90,7 @@ def create_lut_tab():
|
|
90 |
with gr.Tab("LUT"):
|
91 |
with gr.Row():
|
92 |
with gr.Column():
|
93 |
-
input_image = gr.Image(label="Input Image")
|
94 |
lut_dropdown = gr.Dropdown(
|
95 |
choices=available_luts,
|
96 |
label="Select LUT",
|
|
|
90 |
with gr.Tab("LUT"):
|
91 |
with gr.Row():
|
92 |
with gr.Column():
|
93 |
+
input_image = gr.Image(label="Input Image", height=256)
|
94 |
lut_dropdown = gr.Dropdown(
|
95 |
choices=available_luts,
|
96 |
label="Select LUT",
|
pixelize_processor.py
CHANGED
@@ -100,7 +100,7 @@ def create_pixelize_tab():
|
|
100 |
process_btn = gr.Button("Process Image")
|
101 |
|
102 |
with gr.Column():
|
103 |
-
output_image = gr.Image(label="Processed Image"
|
104 |
|
105 |
# Set up processing event
|
106 |
process_btn.click(
|
|
|
100 |
process_btn = gr.Button("Process Image")
|
101 |
|
102 |
with gr.Column():
|
103 |
+
output_image = gr.Image(label="Processed Image")
|
104 |
|
105 |
# Set up processing event
|
106 |
process_btn.click(
|
sharpen_processor.py
CHANGED
@@ -105,7 +105,7 @@ def create_sharpen_tab():
|
|
105 |
|
106 |
with gr.Row():
|
107 |
with gr.Column():
|
108 |
-
input_image = gr.Image(label="Input Image")
|
109 |
|
110 |
with gr.Tabs():
|
111 |
with gr.Tab("CAS"):
|
|
|
105 |
|
106 |
with gr.Row():
|
107 |
with gr.Column():
|
108 |
+
input_image = gr.Image(label="Input Image", height=256)
|
109 |
|
110 |
with gr.Tabs():
|
111 |
with gr.Tab("CAS"):
|
simple_effects_processor.py
CHANGED
@@ -50,7 +50,7 @@ def create_effects_tab():
|
|
50 |
|
51 |
with gr.Row():
|
52 |
with gr.Column():
|
53 |
-
input_image = gr.Image(label="Input Image")
|
54 |
|
55 |
with gr.Tabs():
|
56 |
with gr.Tab("Desaturate"):
|
|
|
50 |
|
51 |
with gr.Row():
|
52 |
with gr.Column():
|
53 |
+
input_image = gr.Image(label="Input Image", height=256)
|
54 |
|
55 |
with gr.Tabs():
|
56 |
with gr.Tab("Desaturate"):
|