YOLO算法改进指南【初阶改进篇】:2.改进DIoU-NMS,SIoU-NMS,EIoU-NMS,CIoU-NMS,GIoU-NMS

news/2024/7/10 23:37:30 标签: YOLO, 算法

非极大值抑制(Non-maximum Suppression (NMS))的作用简单说就是模型检测出了很多框,我应该留哪些。
image.png
本篇将演示如何修改:NMS、Merge-NMS、Soft-NMS、CIoU-NMS、DIoU-NMS、GIoU-NMS、EIoU-NMS、SIoU-NMS

1. NMS过程

NMS过程
For a prediction bounding box B, the model calculates the predicted probability for each category. Assume the largest predicted probability is p, the category corresponding to this probability is the predicted category of B. We also refer to p as the confidence level of prediction bounding box B. On the same image, we sort the prediction bounding boxes with predicted categories other than background by confidence level from high to low, and obtain the list L. Select the prediction bounding box B1 with highest confidence level from L as a baseline and remove all non-benchmark prediction bounding boxes


http://www.niftyadmin.cn/n/231527.html

相关文章

负载均衡式在线OJ

目录项目介绍所用技术与开发环境所用技术开发环境项目各种安装升级 gcc安装 jsoncpp安装 cpp-httplib安装boost库安装与测试 ctemplate项目宏观结构总体文件目录comm : 公共模块compile_run_server:编译和运行compiler.hpp编译runner.hpp 运行compiler_runner.hpp调…

002+limou+顺序表

0、前要:线性表的概念 (1)线性表(linear list)是n个具有相同特性的数据元素的有限序列。线性表是一种在实际中广泛使用的数据结构,常见的线性表有 :顺序表、链表、栈、队列、字符串等 &#x…

python之爬虫

python:爬虫思路,借鉴文章 一、明确需求 首先我们要明白我们爬取的具体是什么内容,比如爬取文章标题,爬取图片,爬取实时新闻 二、建立request请求 1.使用的是哪一种请求方式,get post等2.获取请求URL&a…

SpringBoot整合JWT

一、What is JWT?Json web token (JWT),是为了在网络应用环境间传递声明而执行的一种基于 JSON 的开放标准((RFC 7519),该 token 被设计为紧凑且安全的,特别适用于分布式站点的单点登录(SSO)场景…

MySQL8.0.32安装以及环境配置

文章目录一、安装MySQL二、错误集1. 如果操作失误,可以重新安装一、安装MySQL 下载MySQL的社区版的压缩包:https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.32-winx64.zip 将压缩包解压到你要安装的目录中 将对应的安装路径添加到环境变量中…

LambdaQueryWrapper用法

lambdaquerywrapper简介使用原因使用方法简介 LambdaQueryWrapper是一种针对Mybatis Plus代码重构而开发出来的轻量级查询条件封装工具(QueryWrapper),其实质是一种构建MyBatis Plus条件构建器。 它可以让查询条件(where&#x…

伊拉克coc认证怎么办理?

伊拉克coc认证怎么办理? 伊拉克COC认证   据伊拉克法律第54号第3章第8条,伊拉克中央标准质量控制组织(简称COSQC), 将实施进口前检验、测试及出证方案(简称ICIGI),旨在限制不符合标准&#x…

关于比较中设置极大值,常设置的0x3f3f3f3f

无穷大常量 int型变量的取值范围&#xff1a;[-2^31, 2^31 - 1] -> [-2147483648, 2147483647] 0x7fffffff 2147483647 (2^31 - 1) (1 << 31) - 1 0x3fffffff 1073741823 (2^30 - 1) (1 << 30) - 1 0x3f3f…