feat: canny edge

This commit is contained in:
Artemy 2023-04-17 20:20:27 +03:00
parent 26702d57f1
commit 3f1d13c1c0
3 changed files with 17 additions and 3 deletions

View file

@ -11,7 +11,9 @@ with gr.Blocks() as app:
placeholder="A directory with many images.", lines=1, label="Directory"
)
method = gr.Dropdown(
choices=["canny edge", "sharpen"], value="canny edge", label="Method"
choices=["Edge detection", "Canny edge detection", "sharpen"],
value="Sharpen",
label="Method",
)
with gr.Accordion("Advanced settings", open=False) as acc: