-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
121 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
Metadata-Version: 2.1 | ||
Name: alvonCV | ||
Version: 0.2 | ||
Summary: Computer Vision Helper Package | ||
Home-page: https://github.com/alvon-X/alvonCV | ||
Author: Deepak Singh | ||
Author-email: deepaksinghgs30@gmail.com | ||
License: MIT | ||
Download-URL: https://github.com/alvon-X/alvonCV/archive/refs/tags/v_02.tar.gz | ||
Description: # Computer Vision Helper Packages | ||
|
||
--- | ||
|
||
- Face Detection | ||
- Face Mesh | ||
|
||
## Install the package | ||
```sh | ||
pip install alvonCV | ||
``` | ||
|
||
## Demo Code for Face Detection | ||
|
||
```c | ||
import alvonCV | ||
import cv2 | ||
import time | ||
|
||
cap = cv2.VideoCapture(0) | ||
pTime = 0 | ||
# here you use the alvonCV package | ||
faceDetectorObj = alvonCV.FaceDetector() | ||
|
||
while True: | ||
success, img = cap.read() | ||
img, bboxs = faceDetectorObj.findFaces(img, draw=True) | ||
cTime = time.time() | ||
fps = 1 / (cTime - pTime) | ||
pTime = cTime | ||
cv2.putText(img, f'FPS: {int(fps)}', (20, 70), cv2.FONT_HERSHEY_PLAIN, 3, (0, 255, 0), 2) | ||
cv2.imshow("Image", img) | ||
cv2.waitKey(1) | ||
``` | ||
|
||
## Demo Code for Face Mesh | ||
|
||
```c | ||
import alvonCV | ||
import cv2 | ||
import time | ||
|
||
cap = cv2.VideoCapture(0) | ||
pTime = 0 | ||
faceDetectorObj = alvonCV.FaceMeshDetector() | ||
|
||
while True: | ||
success, img = cap.read() | ||
img = faceDetectorObj.findFaceMesh(img, draw=True) | ||
cTime = time.time() | ||
fps = 1 / (cTime - pTime) | ||
pTime = cTime | ||
cv2.putText(img, f'FPS: {int(fps)}', (20, 70), cv2.FONT_HERSHEY_PLAIN, 3, (0, 255, 0), 2) | ||
cv2.imshow("Image", img) | ||
cv2.waitKey(1) | ||
|
||
``` | ||
|
||
## Demo Code for Hand Detector | ||
|
||
```c | ||
import alvonCV | ||
import cv2 | ||
import time | ||
|
||
cap = cv2.VideoCapture(0) | ||
detector = alvonCV.HandDetector(detectionCon=0.8, maxHands=1) | ||
while True: | ||
# Get image frame | ||
success, img = cap.read() | ||
|
||
# Find the hand and its landmarks | ||
img = detector.findHands(img) | ||
lmList, bbox = detector.findPosition(img) | ||
fingersUp = detector.fingersUp() | ||
print(fingersUp) | ||
|
||
# Display | ||
cv2.imshow("Image", img) | ||
cv2.waitKey(1) | ||
``` | ||
Keywords: Computer Vision,Face Mesh,Face Detection,alvon | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 3 - Alpha | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Topic :: Software Development :: Build Tools | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Description-Content-Type: text/markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
LICENCE.txt | ||
README.md | ||
setup.cfg | ||
setup.py | ||
alvonCV/FaceDetectionModule.py | ||
alvonCV/FaceMeshModule.py | ||
alvonCV/HandTrackingModule.py | ||
alvonCV/__init__.py | ||
alvonCV.egg-info/PKG-INFO | ||
alvonCV.egg-info/SOURCES.txt | ||
alvonCV.egg-info/dependency_links.txt | ||
alvonCV.egg-info/requires.txt | ||
alvonCV.egg-info/top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
opencv-python | ||
mediapipe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
alvonCV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from alvonCV.FaceMeshModule import FaceMeshDetector | ||
from alvonCV.FaceDetectionModule import FaceDetector | ||
from alvonCV.FaceDetectionModule import FaceDetector | ||
from alvonCV.HandTrackingModule import HandDetector |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters