Meta Onnx Toolkit
Project description
metaonnx
metaonnx部署通用框架
1、安装最新版 meta-cv
pip install meta-cv
2、安装最新版 meta-onnx
pip install meta-onnx
3、目标检测示例(参考detection_demo.py代码)
import platform, cv2
import metaonnx as mo
Detection = mo.DetectionOnnx
y = Detection(model_path='models/yolov8m.onnx',
input_width=640,
input_height=480,
confidence_thresh=0.5,
nms_thresh=0.3,
class_names=classnames)
img = cv2.imread('models/bus.jpg')
_dets, _scores, _labels = y.predict(cv2.cvtColor(img, cv2.COLOR_BGR2RGB), use_preprocess=True)
# 显示
y.show(img, _dets, _scores, _labels)
cv2.imwrite("models/bus.png", img)
4、实例分割示例(参考segment_demo.py代码)
import platform, cv2
import metaonnx as mo
Segment = mo.SegmentOnnx
y = Segment(model_path='models/yolov8m-seg.rknn',
input_width=640,
input_height=480,
confidence_thresh=0.5,
nms_thresh=0.3,
class_names=classnames)
img = cv2.imread('models/bus.jpg')
_dets, _scores, _labels = y.predict(cv2.cvtColor(img, cv2.COLOR_BGR2RGB), use_preprocess=True)
# 显示
y.show(img, _dets, _scores, _labels)
cv2.imwrite("models/bus.png", img)
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
meta-onnx-0.1.1.tar.gz
(3.5 kB
view details)
Built Distribution
File details
Details for the file meta-onnx-0.1.1.tar.gz
.
File metadata
- Download URL: meta-onnx-0.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.15 tqdm/4.64.0 importlib-metadata/4.2.0 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3bab537ee22b88664f43d511ef914f5fce1039fd86c6fc9c9aa1dc4b93a3c22 |
|
MD5 | 380d053f78970a33ea41d77266d6b27f |
|
BLAKE2b-256 | c52de156cdf19e2330ed9a9519836ec620963bad4779738eaee721335c040205 |
File details
Details for the file meta_onnx-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: meta_onnx-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.15 tqdm/4.64.0 importlib-metadata/4.2.0 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 625834a9a9adae2eca48f99a73f79f43ceeb476614f45aa9ddd87e18b0c6d37f |
|
MD5 | 03968aee18c758f8f09938e5f18b0d5f |
|
BLAKE2b-256 | 3437c56547c3b19b51d9dfb79c9f1338bfee00dc159ac92c49a2d354e2a366c9 |