1 Star 0 Fork 0

SIT-kite/kite-badge

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
scan.py 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
sunnysab 提交于 2022-01-30 00:06 . Fix: 修正一处语法错误.
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import sys
import time
from typing import List
import cv2
import torch
from loguru import logger
from yolox.data.data_augment import ValTransform
from yolox.exp import get_exp
from yolox.utils import get_model_info, postprocess
# YOLOX项目路径
yolox_path = r'/root/YOLOX'
sys.path.append(yolox_path)
def init(ckpt_path):
global model, exp
# 模型的配置参数信息
exp = get_exp(yolox_path + '/exps/example/custom/nano.py', None)
model = exp.get_model()
logger.info("Model Summary: {}".format(get_model_info(model, exp.test_size)))
# 评估模式
model.eval()
# 加载模型
logger.info("loading yolox_nano model")
ckpt = torch.load(ckpt_path, map_location="cpu")
# load the model state dict
model.load_state_dict(ckpt["model"])
logger.info("loaded yolox_nano model done.")
def inference(img) -> List[float]:
""" 执行推理 """
preprocess = ValTransform()
img, _ = preprocess(img, None, exp.test_size)
img = torch.from_numpy(img).unsqueeze(0)
img = img.float()
with torch.no_grad():
t0 = time.time()
outputs = model(img)
outputs = postprocess(
outputs, exp.num_classes, exp.test_conf,
exp.nmsthre, class_agnostic=True
)
logger.info("Infer time: {:.4f}s".format(time.time() - t0))
result = []
if outputs is None or outputs[0] is None:
return [0.0]
for output in outputs[0]:
scores = output[4] * output[5]
result.append(scores)
return sorted(result, reverse=True)
def detect(path: str) -> List[float]:
# 图片
img = cv2.imread(path)
return inference(img)
init('./sit-badge.pth')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/SIT-kite/kite-badge.git
[email protected]:SIT-kite/kite-badge.git
SIT-kite
kite-badge
kite-badge
master

搜索帮助