当前位置:网站首页>理解 YOLOV1 第二篇 预测阶段 非极大值抑制(NMS)
理解 YOLOV1 第二篇 预测阶段 非极大值抑制(NMS)
2022-07-06 11:36:00 【code bean】
引言
1 预测阶段,就是在模型已经训练好之后,开始进行预测的阶段
2 NMS非极大值抑制,在这里面的作用我的理解是,在类别相同时,任何可以框选出
多个实例。
交并比(iou)
那么交并比就是:
非极大值抑制(NMS)
上篇文章中《理解 YOLOV1 第一篇 预测阶段_code bean的博客-CSDN博客》我们预测出了98个候选框,那么我们现在要做的就是筛选出最为准确的那几个。
NMS第1轮
我们首先将其中一类(比如狗)的候选框按全概率进行降序排序,然后将所有的候选框和第一个比较,如果候选框的交并比大于某个阈值,就直接将此候选框对应的概率清零(相当于排除该候选框,因为交并比过大说明是重复的选择,概率有比最大的小,所以可以干掉)
如上图所示,黄色框和绿色框交并比大于0.5结果,绿框被干掉了。
NMS第2轮
经过了第一轮,和第一个框交并比过大的都被干掉了,于是开始第二轮,第二轮此时从第二大概率的候选框开始,也就是此时图中的蓝色框框,而此时蓝色的框框后面的红色框框交并比过大,所以红色框框被干掉。
后面可能还有第N轮,然后一直到结束。
不过到目前为止,黄框和蓝框是最终被保留的选择框。
NMS非极大值抑制,在这里面的作用我的理解是,在类别相同时,任何可以框选出
多个实例。
参考:
边栏推荐
- Help improve the professional quality of safety talents | the first stage of personal ability certification and assessment has been successfully completed!
- 【翻译】云原生观察能力微调查。普罗米修斯引领潮流,但要了解系统的健康状况仍有障碍...
- English topic assignment (25)
- Tensorflow2.0 self defined training method to solve function coefficients
- Synchronous development of business and application: strategic suggestions for application modernization
- C # - realize serialization with Marshall class
- MRO工业品企业采购系统:如何精细化采购协同管理?想要升级的工业品企业必看!
- spark基础-scala
- 史上超级详细,想找工作的你还不看这份资料就晚了
- Yyds dry goods inventory leetcode question set 751 - 760
猜你喜欢
Actf 2022 came to a successful conclusion, and 0ops team won the second consecutive championship!!
Spark foundation -scala
Graffiti intelligence is listed on the dual main board in Hong Kong: market value of 11.2 billion Hong Kong, with an annual revenue of 300 million US dollars
php+redis实现超时取消订单功能
Fast power template for inverse element, the role of inverse element and example [the 20th summer competition of Shanghai University Programming League] permutation counting
[translation] linkerd's adoption rate in Europe and North America exceeded istio, with an increase of 118% in 2021.
第五期个人能力认证考核通过名单公布
黑馬--Redis篇
Detailed idea and code implementation of infix expression to suffix expression
通俗的讲解,带你入门协程
随机推荐
[translation] linkerd's adoption rate in Europe and North America exceeded istio, with an increase of 118% in 2021.
Countdown 2 days | live broadcast preview of Tencent cloud message queue data import platform
Looting iii[post sequence traversal and backtracking + dynamic planning]
LeetCode-1279. 红绿灯路口
Modulenotfounderror: no module named 'PIL' solution
谷粒商城--分布式高级篇P129~P339(完结)
Mysql Information Schema 学习(二)--Innodb表
【pytorch】yolov5 训练自己的数据集
今日直播 | “人玑协同 未来已来”2022弘玑生态伙伴大会蓄势待发
R language ggplot2 visual time series histogram: visual time series histogram through two-color gradient color matching color theme
About image reading and processing, etc
Actf 2022 came to a successful conclusion, and 0ops team won the second consecutive championship!!
How to customize animation avatars? These six free online cartoon avatar generators are exciting at a glance!
ACTF 2022圆满落幕,0ops战队二连冠!!
倒计时2天|腾讯云消息队列数据接入平台(Data Import Platform)直播预告
How to type multiple spaces when editing CSDN articles
CCNP Part 11 BGP (III) (essence)
保证接口数据安全的10种方案
Computer network: sorting out common network interview questions (I)
CPU负载很低,loadavg很高处理方法