Update app.py
Browse files
app.py
CHANGED
@@ -152,7 +152,7 @@ def gradio_interface():
|
|
152 |
apply_replacement = gr.Checkbox(label="Apply Replacement", value=False)
|
153 |
apply_color_grading = gr.Checkbox(label="Apply Color Grading", value=False)
|
154 |
apply_color_to_full_image = gr.Checkbox(label="Apply Color Correction to Full Image", value=False)
|
155 |
-
blending_amount = gr.Slider(minimum=0, maximum=
|
156 |
apply_button = gr.Button("Apply Changes")
|
157 |
undo_button = gr.Button("Undo")
|
158 |
with gr.Column():
|
|
|
152 |
apply_replacement = gr.Checkbox(label="Apply Replacement", value=False)
|
153 |
apply_color_grading = gr.Checkbox(label="Apply Color Grading", value=False)
|
154 |
apply_color_to_full_image = gr.Checkbox(label="Apply Color Correction to Full Image", value=False)
|
155 |
+
blending_amount = gr.Slider(minimum=0, maximum=200, step=1, label="Blending Amount", value=50)
|
156 |
apply_button = gr.Button("Apply Changes")
|
157 |
undo_button = gr.Button("Undo")
|
158 |
with gr.Column():
|