Subtract the background from orignal Image.
Project description
About
This package will help in segmentation of the body from the background. This package is based on mediapipe selfie segmentation and cvzone.
Function
bodySegmentation(orignalImg,backgroundImg=(255,255,255),threshold=0.3)
- Function Parameter : This function takes
orignalImg
i.e. the image on which the segmentation has to happen. Other parameters i.e.backgroundImg
sets the background color, by default it is white, but it can be changed as per user's need. threshold defines the level at which background has to be removed. - Output : The functions returns a frame as output where the background is segmented.
Usage
bodySegmentation(img)
Default Segmentation (White Background)
from lkbodysegmentation import bodySegmentation
import cv2
cap = cv2.VideoCapture(0)
while True:
success, img = cap.read()
img = bodySegmentation(img)
cv2.imshow('Image',img)
cv2.waitKey(1)
bodySegmentation(img, backgroundColor, threshold)
Customized Segmentation
from lkbodysegmentation import bodySegmentation
import cv2
cap = cv2.VideoCapture(0)
while True:
success, img = cap.read()
backgroundColor = (255,0,255) #You can replace with an image too
threshold = 0.45 #Level of background to be erased
img = bodySegmentation(img,backgroundColor,threshold)
cv2.imshow('Image',img)
cv2.waitKey(1)
Developer
This package is developed by Lakshay Kumar an enthusiastic AI Researcher. This is developed keeping in mind the pain to write lengthy lines of code just to detect faces. This will enable other developers to focus more on implementation part rather than spending time on coding the face detection module.
Feel free to share your feedback via mail
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file lkbodysegmentation-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: lkbodysegmentation-0.0.1-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b8ea8015d83ce8e5e4cacf8896c3b62934d67d0168de0c8acb0cfa119817a97 |
|
MD5 | ae781af526823b1fd328e62ac7da49f9 |
|
BLAKE2b-256 | e103d514bb128f0827a1f6e5571017771a6b5dcf37846bf5da953769a7b3fbad |