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
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.7.tar.gz
(88.8 kB
view hashes)
Built Distribution
Close
Hashes for yolov7_package-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 393d98cfcc1628865c9d7877d16855c7a9a839cfdd1aebc343788cfd5b135311 |
|
MD5 | c9b78259f7c6ca39a47533a823a07363 |
|
BLAKE2b-256 | 4cdd7cddabef4bf43254c380f69dc8efbc4da6f04f03d7914a12c86214e6f354 |