Update app.py
Browse files
app.py
CHANGED
@@ -210,7 +210,7 @@ def gradio_interface():
|
|
210 |
apply_replacement = gr.Checkbox(label="Apply Replacement", value=False)
|
211 |
apply_color_grading = gr.Checkbox(label="Apply Color Grading", value=False)
|
212 |
apply_color_to_full_image = gr.Checkbox(label="Apply Color Correction to Full Image", value=False)
|
213 |
-
blending_amount = gr.Slider(minimum=0, maximum=
|
214 |
apply_button = gr.Button("Apply Changes")
|
215 |
undo_button = gr.Button("Undo")
|
216 |
with gr.Column():
|
|
|
210 |
apply_replacement = gr.Checkbox(label="Apply Replacement", value=False)
|
211 |
apply_color_grading = gr.Checkbox(label="Apply Color Grading", value=False)
|
212 |
apply_color_to_full_image = gr.Checkbox(label="Apply Color Correction to Full Image", value=False)
|
213 |
+
blending_amount = gr.Slider(minimum=0, maximum=500, step=1, label="Blending Amount", value=150)
|
214 |
apply_button = gr.Button("Apply Changes")
|
215 |
undo_button = gr.Button("Undo")
|
216 |
with gr.Column():
|