Omnibus commited on
Commit
96fdf7c
1 Parent(s): 201edc2

Create bg.py

Browse files
Files changed (1) hide show
  1. bg.py +6 -0
bg.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from rembg import remove as rm
2
+
3
+ def rem_bg(input):
4
+ result=rm(input)
5
+ return result
6
+