Detector library
Project description
aef-nattanon-py-lib
Install
$ pip install aef-nattanon-py
Simple Demo
# Import aef_nattanon_py from your library
import aef_nattanon_py as aef
import cv2
# Multiplication
multiplication = aef.Multiplication(2)
print(multiplication.multiply(5)) # 10
# direct_by_img_path
myDetector = aef.Detector('coco.names', 'yolov3-tiny.cfg', 'yolov3-tiny.weights')
myDetector.detact_by_img_path('my-photo.jpeg')
cv2.imshow("Image", myDetector.detect_img)
cv2.waitKey(100)
# direct_by_frame
cap = cv2.VideoCapture(0)
while True:
_, frame = cap.read()
myDetector.detact_by_frame(frame)
cv2.imshow("Image", myDetector.detect_img)
cv2.waitKey(1)
cv2.destroyAllWindows()
# YoloV3Director
myDetector = aef.YoloV3Detector()
cap = cv2.VideoCapture(0)
while True:
_, frame = cap.read()
myDetector.detect_by_frame(frame)
cv2.imshow("Image", myDetector.detect_img)
cv2.waitKey(1)
cv2.destroyAllWindows()
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 Distribution
aef-nattanon-py-0.2.0.tar.gz
(3.3 kB
view hashes)
Built Distribution
Close
Hashes for aef_nattanon_py-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35f436b8a7eba29894d21c205896a09c24a198d6f16c31462f7b197a2dfd7139 |
|
MD5 | 183188caed36a0783cf000e0abaffd0f |
|
BLAKE2b-256 | 46f3712d4b81df4df188b1220c3b72cee198332b78c7dc8f6980cc568489e03e |