1 Star 1 Fork 0

wengxh/target-detection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
target_test.py 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
xuehao.weng 提交于 2019-08-21 15:08 . upload 目标检测
# _*_ coding:UTF-8 _*_
# 导入目标检测类
from imageai.Detection import ObjectDetection
import os
# 确定保存路径
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "99"
execution_path = os.getcwd()
# 定义目标检测类
detector = ObjectDetection()
# 将这个模型类设置成RetinaNet
detector.setModelTypeAsRetinaNet()
# 用于目标检测的RetinaNet模型文件 resnet50_coco_best_v2.0.1.h5
# 设置检测模型的路径RetinaNet的文件所在路径
detector.setModelPath(os.path.join(execution_path, r"resnet50_coco_best_v2.0.1.h5"))
detector.loadModel() # 加载这个目标检测类
# 调用检测函数,获得结果,解析输入图片的路径和输出图片的路径
detections = detector.detectObjectsFromImage(input_image=os.path.join(execution_path, r"1.jpg"),
output_image_path=os.path.join(execution_path, r"imagenew.jpg"))
for eachObject in detections:
# 遍历结果,并打印模型检测出的图片中每个目标的类型和概率
name = eachObject["name"]
percentage_probability = eachObject["percentage_probability"]
print('%s:%s' % (name, percentage_probability))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wengxh/target-detection.git
[email protected]:wengxh/target-detection.git
wengxh
target-detection
target-detection
master

搜索帮助