docs: update config
Browse files
app.py
CHANGED
@@ -24,7 +24,10 @@ inputs=[
|
|
24 |
gr.Number(value=3, minimum=0, label="Sigma", info="Spatial standard deviation for spatial affinity based Gaussian weights.")
|
25 |
]
|
26 |
outputs=["image"]
|
27 |
-
examples=[
|
|
|
|
|
|
|
28 |
|
29 |
def enhance_image(image, gamma, lambda_, sigma, lime=True, bc=1, bs=1, be=1, eps=1e-3):
|
30 |
# enhance image
|
|
|
24 |
gr.Number(value=3, minimum=0, label="Sigma", info="Spatial standard deviation for spatial affinity based Gaussian weights.")
|
25 |
]
|
26 |
outputs=["image"]
|
27 |
+
examples=[
|
28 |
+
["demo/1.jpg", 0.6, 0.15, 3],
|
29 |
+
["demo/2.bmp", 0.6, 0.15, 3]
|
30 |
+
]
|
31 |
|
32 |
def enhance_image(image, gamma, lambda_, sigma, lime=True, bc=1, bs=1, be=1, eps=1e-3):
|
33 |
# enhance image
|