new background remover
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from huggingface_hub import hf_hub_download
|
|
7 |
|
8 |
clientGFPGAN = Client("leonelhs/GFPGAN")
|
9 |
clientSuperface = Client("leonelhs/superface")
|
10 |
-
clientZeroScratches = Client("leonelhs/
|
11 |
clientDeoldify = Client("leonelhs/deoldify")
|
12 |
clientEnhanceLight = Client("leonelhs/Zero-DCE")
|
13 |
clientZeroBackground = Client("leonelhs/ZeroBackground")
|
@@ -32,7 +32,7 @@ def enhance_face(image, upsampler, face_enhancer, scale):
|
|
32 |
|
33 |
|
34 |
def zero_scratches(image):
|
35 |
-
return clientZeroScratches.predict(image, api_name="/predict")
|
36 |
|
37 |
|
38 |
def colorize_photo(image):
|
|
|
7 |
|
8 |
clientGFPGAN = Client("leonelhs/GFPGAN")
|
9 |
clientSuperface = Client("leonelhs/superface")
|
10 |
+
clientZeroScratches = Client("leonelhs/remove-background")
|
11 |
clientDeoldify = Client("leonelhs/deoldify")
|
12 |
clientEnhanceLight = Client("leonelhs/Zero-DCE")
|
13 |
clientZeroBackground = Client("leonelhs/ZeroBackground")
|
|
|
32 |
|
33 |
|
34 |
def zero_scratches(image):
|
35 |
+
return clientZeroScratches.predict(image, api_name="/predict")[1]
|
36 |
|
37 |
|
38 |
def colorize_photo(image):
|