python配合yolo分类模型开发分类软件

  1. 上一篇文章写了yolo的分类模型的训练,写篇文章基于yolo分类模型开发分类软件。
  2. 开发环境:pycharm,PySide6 6.6.1 ,PySide6-Addons 6.6.1,PySide6-Essentials 6.6.1,torch 2.3.1+cu121,torchaudio 2.3.1+cu121,torchvision 0.18.1+cu121,onnx 1.16.1,onnxruntime 1.17.3,opencv-contrib-python 4.10.0.82,opencv-python 4.10.0.82,opencv-python-headless 4.7.0.72
  3. 分类使用的数据集,halcon的pill分类demo的数据集
  4. 软件界面


  5. 核心代码
    yolo推理代码
bash 复制代码
  results = self.Model.predict(image_mat_)
            if(len(results)>0):
                ###获取分类名
                names_=results[0].names
                probs_=results[0].probs
                class_id_=probs_.top1
                class_socre_=probs_.top1conf.item()
                self.Classification=names_[class_id_]
                self.Sorce=str(class_socre_)

onnx推理核心代码

bash 复制代码
 			target_image_height_ = input_onnx_.shape[2]###获取输入的目标维度
            target_image_width_ = input_onnx_.shape[3]

            # image_mat_=image_mat_.resize(target_image_width_,target_image_height_)###缩放图片
            scale_image_mat_=cv2.resize(image_mat_,(target_image_width_,target_image_height_))
            print("ImageMatShape:", scale_image_mat_.shape)

            image_np_ = np.array(scale_image_mat_)  ###图片转成np数组
            print("ImageNpShape:", image_np_.shape)

            image_np_ = image_np_.transpose(2, 0, 1)  ##转成通道在前面的维度
            print("ImageNpShape:", image_np_.shape)

            resized_width = image_np_.shape[2]  ##获取图片输入输出
            resized_height = image_np_.shape[1]

            image_np_ = image_np_.reshape(1, 3, target_image_height_, target_image_width_)  ##添加一个新维度
            print(image_np_[0, 0, 0, 0])
            print("ImageNpShape:", image_np_.shape)

            image_np_ = image_np_.astype(np.float32)

            image_np_ = image_np_ / 255.0  ##数据归一化
            print(image_np_[0, 0, 0, 0])

            ###获取输出点
            outputs = self.OnnxModel.get_outputs()
            output_onnx_ = outputs[0]
            print("Name:", output_onnx_.name)
            print("Type:", output_onnx_.type)
            print("Shape:", output_onnx_.shape)

            ###运行推理
            outputs = self.OnnxModel.run(["output0"], {"images": image_np_})

            if(len(outputs)>0):
                ng_sorce_=outputs[0][0][0]
                ok_sorce_=outputs[0][0][1]

                if(ng_sorce_>ok_sorce_):
                    self.Classification="ng"
                    self.Sorce=str(ng_sorce_)
                else:
                    self.Classification="ok"
                    self.Sorce = str(ok_sorce_)
  1. 推理的效果显示

相关推荐
Ulyanov27 分钟前
卡尔曼滤波技术博客系列:第四篇:多目标跟踪:数据关联与航迹管理
python·目标跟踪·系统仿真·雷达电子战·仿真引擎
Three~stone37 分钟前
MATLAB vs Python 两者区别和安装教程
开发语言·python·matlab
soragui1 小时前
【Python】第 1 章:Python 解释器原理
开发语言·python
Ulyanov1 小时前
卡尔曼滤波技术博客系列:第三篇 雷达目标跟踪:运动模型与坐标转换
python·目标跟踪·系统仿真·雷达电子战
nimadan121 小时前
生成剧本杀软件2025推荐,创新剧情设计工具引领潮流
人工智能·python
极光代码工作室1 小时前
基于深度学习的智能垃圾分类系统
python·深度学习·神经网络·机器学习·ai
MediaTea1 小时前
Pandas 操作指南(二):数据选取与条件筛选
人工智能·python·机器学习·数据挖掘·pandas
小陈工1 小时前
Python Web开发入门(十二):使用Flask-RESTful构建API——让后端开发更优雅
开发语言·前端·python·安全·oracle·flask·restful
无心水1 小时前
20、Spring陷阱:Feign AOP切面为何失效?配置优先级如何“劫持”你的设置?
java·开发语言·后端·python·spring·java.time·java时间处理
夜雨飘零12 小时前
零门槛!用 AI 生成 HTML 并一键部署到云端桌面
人工智能·python·html