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