Metadata-Version: 2.1
Name: mtcnn-runtime
Version: 0.0.4
Summary: Python library for streamlined tracking and management of AI training processes.
Project-URL: Homepage, https://github.com/SAKURA-CAT/mtcnn-runtime
Author-email: Cunyue <cunykang@gmail.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: machine learning
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.8
Requires-Dist: onnxruntime
Requires-Dist: opencv-python
Description-Content-Type: text/markdown

# mtcnn-runtime
基于mtcnn和onnxruntime的轻量级人脸检测库，开箱即用，非常方便。

# 使用方式
## 安装方式
在终端运行如下命令进行安装：
```shell
pip install mtcnn-runtime
```
> 本项目只针对python3.8以上版本进行维护
## 运行方式
安装完毕以后，可在python代码中加入如下内容进行使用：
```py
import cv2
from mtcnnruntime import MTCNN

mtcnn = MTCNN()
path="你的图像路径"
img = cv2.imread(path)
boxes, landmarks = mtcnn.detect(img)
```
