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.3.tar.gz
(3.4 kB
view hashes)
Built Distribution
Close
Hashes for aef_nattanon_py-0.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba6108fa807afcc2f3ae37e52854188fb143a9f298b0a4acc340e28eed9937b7 |
|
MD5 | f04e4a060bb1fbdc476e602d5422e4af |
|
BLAKE2b-256 | ec5ae475d4e3c2eb223965fc5eff6e867bbd735566a876ea5b78df9f67bf21af |