amirgame197
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,6 @@ remover = Remover(mode='fast') # custom setting
|
|
13 |
|
14 |
|
15 |
def doo(image):
|
16 |
-
return "Hello " + name + "!!"
|
17 |
img = Image.fromarray(image).convert('RGB') # read image
|
18 |
out = remover.process(img) # default setting - transparent background
|
19 |
out = remover.process(img, type='rgba') # same as above
|
|
|
13 |
|
14 |
|
15 |
def doo(image):
|
|
|
16 |
img = Image.fromarray(image).convert('RGB') # read image
|
17 |
out = remover.process(img) # default setting - transparent background
|
18 |
out = remover.process(img, type='rgba') # same as above
|