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!
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.11.tar.gz
(91.7 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.11.tar.gz.
File metadata
- Download URL: yolov7_package-0.0.11.tar.gz
- Upload date:
- Size: 91.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40eb5790c7d28bd61e5552a99309d8b7fd38c01ce0f5ffc8b2c6d491e454bc0c
|
|
| MD5 |
195a1afeec7d9fda537a53fe1d73cc79
|
|
| BLAKE2b-256 |
b53eaa4555ff2e0b493444ded05983df28d8ce2b8e3d856919362825acb9a21f
|
File details
Details for the file yolov7_package-0.0.11-py3-none-any.whl.
File metadata
- Download URL: yolov7_package-0.0.11-py3-none-any.whl
- Upload date:
- Size: 98.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db7b3e2c90230d39a93074d981ac587b571e292c48996bd821b4fa2fdcb8fd13
|
|
| MD5 |
85801a0f018ae66d5a63af494ce98492
|
|
| BLAKE2b-256 |
b80f29efaa5c2abe0cfdb244f917796d382a0464d5dc92aaaf81201b71f51289
|