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 detect import Yolov7Detector
import cv2
if __name__ == '__main__':
img = cv2.imread('img.jpg')
#img = cv2.resize(img, [640, 640])
det = Yolov7Detector()
classes, boxes, scores = det.detect(img)
print(classes, boxes, scores)
img = det.draw_on_image(img, boxes[0], scores[0], classes[0])
print(img.shape)
cv2.imshow("image", img)
cv2.waitKey()
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.10.tar.gz
(89.5 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.10.tar.gz.
File metadata
- Download URL: yolov7_package-0.0.10.tar.gz
- Upload date:
- Size: 89.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a3d319d4dccf34337df4c6194a7f23d867bcbf9387b4fec39151e03990a8c8f
|
|
| MD5 |
1b467eb8d86579a4f6b864aa34d549dc
|
|
| BLAKE2b-256 |
97ae76cda7d9e57df9e5f7966abccd367fe1fd535ccd5c47753d79402adfad12
|
File details
Details for the file yolov7_package-0.0.10-py3-none-any.whl.
File metadata
- Download URL: yolov7_package-0.0.10-py3-none-any.whl
- Upload date:
- Size: 95.8 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 |
0f650b60d40acff8de8a184d0d8b53517282d992c5a3e7501bb3f3035139e1bd
|
|
| MD5 |
48237410786655e77e56752c605448a0
|
|
| BLAKE2b-256 |
de9b8eec33962b0e8f709be2d231ed9df128c7e36c27259e0d44e560b384b7a7
|