Bindings for yolov7 in one class
Project description
WongKinYiu/yolov7 as independent package
Bindings for yolov7 project (https://github.com/WongKinYiu/yolov7)
Example of usage:
from yolov7_package import Yolov7Detector
import cv2
if __name__ == '__main__':
img = cv2.imread('img.jpg')
det = Yolov7Detector(traced=False)
classes, boxes, scores = det.detect(img)
img = det.draw_on_image(img, boxes[0], scores[0], classes[0])
cv2.imshow("image", img)
cv2.waitKey()
You can use traced=True option to download and infer traced FP16 version of yolov7 model!
PYPI link: https://pypi.org/project/yolov7-package/
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
yolov7_package-0.0.12.tar.gz
(82.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yolov7_package-0.0.12.tar.gz.
File metadata
- Download URL: yolov7_package-0.0.12.tar.gz
- Upload date:
- Size: 82.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1af02ec9917ab7c7ac760cb303697410a7bea71872e30e9eb0cd5f0df846f445
|
|
| MD5 |
c404d79dd5a3e09e3ef0aa295144e71e
|
|
| BLAKE2b-256 |
33a11f80ed002a397a7a965f6cc9eaa5cb92c7bf1b919520fc99e7c5f9c199d7
|
File details
Details for the file yolov7_package-0.0.12-py3-none-any.whl.
File metadata
- Download URL: yolov7_package-0.0.12-py3-none-any.whl
- Upload date:
- Size: 88.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d5e353311ea6417d23dee94177932f85ce6808716f232584711b60b62693788
|
|
| MD5 |
5a6d8564d4464d047588b22447382951
|
|
| BLAKE2b-256 |
9380fd7919baeb84b770e4aa90034ee99ccc7fb5609fefbb9a0b89cf070b8a90
|