Bahushruth eugenesiow commited on
Commit
4339e49
0 Parent(s):

Duplicate from eugenesiow/remove-bg

Browse files

Co-authored-by: Eugene Siow <eugenesiow@users.noreply.huggingface.co>

Files changed (6) hide show
  1. .gitattributes +27 -0
  2. .gitignore +7 -0
  3. README.md +38 -0
  4. app.py +78 -0
  5. packages.txt +4 -0
  6. requirements.txt +0 -0
.gitattributes ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bin.* filter=lfs diff=lfs merge=lfs -text
5
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.model filter=lfs diff=lfs merge=lfs -text
12
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
13
+ *.onnx filter=lfs diff=lfs merge=lfs -text
14
+ *.ot filter=lfs diff=lfs merge=lfs -text
15
+ *.parquet filter=lfs diff=lfs merge=lfs -text
16
+ *.pb filter=lfs diff=lfs merge=lfs -text
17
+ *.pt filter=lfs diff=lfs merge=lfs -text
18
+ *.pth filter=lfs diff=lfs merge=lfs -text
19
+ *.rar filter=lfs diff=lfs merge=lfs -text
20
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
21
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
22
+ *.tflite filter=lfs diff=lfs merge=lfs -text
23
+ *.tgz filter=lfs diff=lfs merge=lfs -text
24
+ *.xz filter=lfs diff=lfs merge=lfs -text
25
+ *.zip filter=lfs diff=lfs merge=lfs -text
26
+ *.zstandard filter=lfs diff=lfs merge=lfs -text
27
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ .idea/
2
+ venv/
3
+ tmp/
4
+ *.bmp
5
+ *.jpg
6
+ *.png
7
+ *.db
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Remove Bg
3
+ emoji: 🖼️
4
+ colorFrom: blue
5
+ colorTo: red
6
+ sdk: gradio
7
+ app_file: app.py
8
+ pinned: false
9
+ duplicated_from: eugenesiow/remove-bg
10
+ ---
11
+
12
+ # Configuration
13
+
14
+ `title`: _string_
15
+ Display title for the Space
16
+
17
+ `emoji`: _string_
18
+ Space emoji (emoji-only character allowed)
19
+
20
+ `colorFrom`: _string_
21
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)
22
+
23
+ `colorTo`: _string_
24
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)
25
+
26
+ `sdk`: _string_
27
+ Can be either `gradio` or `streamlit`
28
+
29
+ `sdk_version` : _string_
30
+ Only applicable for `streamlit` SDK.
31
+ See [doc](https://hf.co/docs/hub/spaces) for more info on supported versions.
32
+
33
+ `app_file`: _string_
34
+ Path to your main application file (which contains either `gradio` or `streamlit` Python code).
35
+ Path is relative to the root of the repository.
36
+
37
+ `pinned`: _boolean_
38
+ Whether the Space stays on top of your list.
app.py ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import cv2
3
+ import torch
4
+ import numpy as np
5
+ from torchvision import transforms
6
+
7
+ title = "Remove Bg"
8
+ description = "Automatically remove the image background from a profile photo."
9
+ article = "<p style='text-align: center'><a href='https://news.machinelearning.sg/posts/beautiful_profile_pics_remove_background_image_with_deeplabv3/'>Blog</a> | <a href='https://github.com/eugenesiow/practical-ml'>Github Repo</a></p>"
10
+
11
+
12
+ def make_transparent_foreground(pic, mask):
13
+ # split the image into channels
14
+ b, g, r = cv2.split(np.array(pic).astype('uint8'))
15
+ # add an alpha channel with and fill all with transparent pixels (max 255)
16
+ a = np.ones(mask.shape, dtype='uint8') * 255
17
+ # merge the alpha channel back
18
+ alpha_im = cv2.merge([b, g, r, a], 4)
19
+ # create a transparent background
20
+ bg = np.zeros(alpha_im.shape)
21
+ # setup the new mask
22
+ new_mask = np.stack([mask, mask, mask, mask], axis=2)
23
+ # copy only the foreground color pixels from the original image where mask is set
24
+ foreground = np.where(new_mask, alpha_im, bg).astype(np.uint8)
25
+
26
+ return foreground
27
+
28
+
29
+ def remove_background(input_image):
30
+ preprocess = transforms.Compose([
31
+ transforms.ToTensor(),
32
+ transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
33
+ ])
34
+
35
+ input_tensor = preprocess(input_image)
36
+ input_batch = input_tensor.unsqueeze(0) # create a mini-batch as expected by the model
37
+
38
+ # move the input and model to GPU for speed if available
39
+ if torch.cuda.is_available():
40
+ input_batch = input_batch.to('cuda')
41
+ model.to('cuda')
42
+
43
+ with torch.no_grad():
44
+ output = model(input_batch)['out'][0]
45
+ output_predictions = output.argmax(0)
46
+
47
+ # create a binary (black and white) mask of the profile foreground
48
+ mask = output_predictions.byte().cpu().numpy()
49
+ background = np.zeros(mask.shape)
50
+ bin_mask = np.where(mask, 255, background).astype(np.uint8)
51
+
52
+ foreground = make_transparent_foreground(input_image, bin_mask)
53
+
54
+ return foreground, bin_mask
55
+
56
+
57
+ def inference(img):
58
+ foreground, _ = remove_background(img)
59
+ return foreground
60
+
61
+
62
+ torch.hub.download_url_to_file('https://pbs.twimg.com/profile_images/691700243809718272/z7XZUARB_400x400.jpg',
63
+ 'demis.jpg')
64
+ torch.hub.download_url_to_file('https://hai.stanford.edu/sites/default/files/styles/person_medium/public/2020-03/hai_1512feifei.png?itok=INFuLABp',
65
+ 'lifeifei.png')
66
+ model = torch.hub.load('pytorch/vision:v0.6.0', 'deeplabv3_resnet101', pretrained=True)
67
+ model.eval()
68
+
69
+ gr.Interface(
70
+ inference,
71
+ gr.inputs.Image(type="pil", label="Input"),
72
+ gr.outputs.Image(type="pil", label="Output"),
73
+ title=title,
74
+ description=description,
75
+ article=article,
76
+ examples=[['demis.jpg'], ['lifeifei.png']],
77
+ enable_queue=True
78
+ ).launch(debug=False)
packages.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ python3-opencv
2
+ ffmpeg
3
+ libsm6
4
+ libxext6
requirements.txt ADDED
Binary file (120 Bytes). View file