当前位置:   article > 正文

非极大值抑制(Non-Maximum Suppression,NMS)算法与c和python代码详解_非极大值抑制代码讲解

非极大值抑制代码讲解

背景:非极大值抑制算法(Non-maximum suppression, NMS)的本质是搜索局部极大值,抑制非极大值元素。在目标检测之中用到非常多。

目的:搞懂此算法原理且看懂代码。

目录

一、算法解析

1.1 算法概览

1.2 算法过程

二、c代码解析

2.1 输入参量

2.2 按置信概率排序

sort函数

2.3 IOU的确定

string.compare函数

vector.at函数

2.4 概率最大框保留,重叠抑制

vector::inerator

2.5 最终保留的框

三、python代码解析

np.empty

s_sort

3.1 按照置信概率排序

numpy.argsort函数

numpy.zeros_like函数

3.2  IOU的计算


一、算法解析

1.1 算法概览

非极大值抑制(Non-Maximum Suppression,NMS),顾名思义就是抑制不是极大值的元素,可以理解为局部最大搜索。这个局部代表的是一个邻域,邻域有两个参数可变,一是邻域的维数,二是邻域的大小。这里不讨论通用的NMS算法(参考论文《Efficient Non-Maximum Suppression》对1维和2维数据的NMS实现),而是用于目标检测中提取分数最高的窗口的。例如在行人检测中,滑动窗口经提取特征,经分类器分类识别后,每个窗口都会得到一个分数。但是滑动窗口会导致很多窗口与其他窗口存在包含或者大部分交叉的情况。这时就需要用到NMS来选取那些邻域里分数最高(是行人的概率最大),并且抑制那些分数低的窗口。
NMS在计算机视觉领域有着非常重要的应用,如视频目标跟踪、数据挖掘、3D重建、目标识别以及纹理分析等。

1.2 算法过程

Step1:按置信概率排列相应的备选框

Step2:取最大的框作为保留框,与其IOU大于阈值的框删除掉

Step3:剩下的框执行Step2

很容易理解

根据候选框的类别分类概率做排序:A<B<C<D<E<F

A<B<C<D<E<F

  1. 先标记最大概率矩形框F是我们要保留下来的;
  2. 从最大概率矩形框F开始,分别判断A~E与F的重叠度IOU(两框的交并比)是否大于某个设定的阈值,假设B、D与F的重叠度超过阈值,那么就扔掉B、D;
  3. 从剩下的矩形框A、C、E中,选择概率最大的E,标记为要保留下来的,然后判读E与A、C的重叠度,扔掉重叠度超过设定阈值的矩形框

就这样一直重复下去,直到剩下的矩形框没有了,标记完所有要保留下来的矩形框

二、c代码解析

  1. void nms(vector<struct Bbox> &boundingBox_, vector<struct orderScore> &bboxScore_, const float overlap_threshold, string modelname){
  2. if(boundingBox_.empty()){
  3. return;
  4. }
  5. std::vector<int> heros;
  6. //sort the score
  7. sort(bboxScore_.begin(), bboxScore_.end(), cmpScore);
  8. int order = 0;
  9. float IOU = 0;
  10. float maxX = 0;
  11. float maxY = 0;
  12. float minX = 0;
  13. float minY = 0;
  14. while(bboxScore_.size()>0){
  15. order = bboxScore_.back().oriOrder;
  16. bboxScore_.pop_back();
  17. if(order<0)continue;
  18. heros.push_back(order);
  19. boundingBox_.at(order).exist = false;//delete it
  20. for(int num=0;num<boundingBox_.size();num++){
  21. if(boundingBox_.at(num).exist){
  22. //the iou
  23. maxX = (boundingBox_.at(num).x1>boundingBox_.at(order).x1)?boundingBox_.at(num).x1:boundingBox_.at(order).x1;
  24. maxY = (boundingBox_.at(num).y1>boundingBox_.at(order).y1)?boundingBox_.at(num).y1:boundingBox_.at(order).y1;
  25. minX = (boundingBox_.at(num).x2<boundingBox_.at(order).x2)?boundingBox_.at(num).x2:boundingBox_.at(order).x2;
  26. minY = (boundingBox_.at(num).y2<boundingBox_.at(order).y2)?boundingBox_.at(num).y2:boundingBox_.at(order).y2;
  27. //maxX1 and maxY1 reuse
  28. maxX = ((minX-maxX+1)>0)?(minX-maxX+1):0;
  29. maxY = ((minY-maxY+1)>0)?(minY-maxY+1):0;
  30. //IOU reuse for the area of two bbox
  31. IOU = maxX * maxY;
  32. if(!modelname.compare("Union"))
  33. IOU = IOU/(boundingBox_.at(num).area + boundingBox_.at(order).area - IOU);
  34. else if(!modelname.compare("Min")){
  35. IOU = IOU/((boundingBox_.at(num).area<boundingBox_.at(order).area)?boundingBox_.at(num).area:boundingBox_.at(order).area);
  36. }
  37. if(IOU>overlap_threshold){
  38. boundingBox_.at(num).exist=false;
  39. for(vector<orderScore>::iterator it=bboxScore_.begin(); it!=bboxScore_.end();it++){
  40. if((*it).oriOrder == num) {
  41. (*it).oriOrder = -1;
  42. break;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. }
  49. for(int i=0;i<heros.size();i++)
  50. boundingBox_.at(heros.at(i)).exist = true;
  51. }

2.1 输入参量

vector<struct Bbox> &boundingBox_, 输入的备选框,Bbox类型的向量,名称为boundingBox_

  1. struct Bbox
  2. {
  3. float score;
  4. int x1;
  5. int y1;
  6. int x2;
  7. int y2;
  8. float area;
  9. bool exist;
  10. mydataFmt regreCoord[4];
  11. };

其中包括四个点的坐标,置信概率,区域大小,是否存在的概率。

vector<struct orderScore> &bboxScore_, 表示框的置信概率和初始的顺序。

  1. struct orderScore
  2. {
  3. mydataFmt score;
  4. int oriOrder;
  5. };

const float overlap_threshold, string modelname

分别为抑制框的IOU阈值与相应的nms的方法分为Union与Min

2.2 按置信概率排序

程序开始时,需要将相应的备选框排序

  1. //sort the score
  2. sort(bboxScore_.begin(), bboxScore_.end(), cmpScore);

与之对应的cmpScore函数为:

  1. bool cmpScore(struct orderScore lsh, struct orderScore rsh){
  2. if(lsh.score<rsh.score)
  3. return true;
  4. else
  5. return false;
  6. }

sort函数

头文件<algorithm>

http://www.cplusplus.com/reference/algorithm/sort/

程序意思即对备选框按照置信概率升序排列(注意这里是置信概率,置信概率之中包含了原始的备选框的位置)。

2.3 IOU的确定

  1. maxX = (boundingBox_.at(num).x1>boundingBox_.at(order).x1)?boundingBox_.at(num).x1:boundingBox_.at(order).x1;
  2. maxY = (boundingBox_.at(num).y1>boundingBox_.at(order).y1)?boundingBox_.at(num).y1:boundingBox_.at(order).y1;
  3. minX = (boundingBox_.at(num).x2<boundingBox_.at(order).x2)?boundingBox_.at(num).x2:boundingBox_.at(order).x2;
  4. minY = (boundingBox_.at(num).y2<boundingBox_.at(order).y2)?boundingBox_.at(num).y2:boundingBox_.at(order).y2;
  5. //maxX1 and maxY1 reuse
  6. maxX = ((minX-maxX+1)>0)?(minX-maxX+1):0;
  7. maxY = ((minY-maxY+1)>0)?(minY-maxY+1):0;
  8. //IOU reuse for the area of two bbox
  9. IOU = maxX * maxY;
  10. if(!modelname.compare("Union"))
  11. IOU = IOU/(boundingBox_.at(num).area + boundingBox_.at(order).area - IOU);
  12. else if(!modelname.compare("Min")){
  13. IOU = IOU/((boundingBox_.at(num).area<boundingBox_.at(order).area)?boundingBox_.at(num).area:boundingBox_.at(order).area);
  14. }

 这部分函数相当于确定num位置和order位置的bBox之间的IOU。

string.compare函数

http://www.cplusplus.com/reference/string/string/compare/

string在c与python之中都有出现且常用,所以应当仔细研读,熟练运用。

返回值为0表示相等。modelname.compare("Union")表示modelname为 "Union"时候则返回0.

vector.at函数

http://www.cplusplus.com/reference/vector/vector/at/

  1. std::vector<int> myvector (10); // 10 zero-initialized ints
  2. // assign some values:
  3. for (unsigned i=0; i<myvector.size(); i++)
  4. myvector.at(i)=i;

2.4 概率最大框保留,重叠抑制

  1. while(bboxScore_.size()>0){
  2. order = bboxScore_.back().oriOrder;
  3. bboxScore_.pop_back();
  4. if(order<0)continue;
  5. heros.push_back(order);
  6. boundingBox_.at(order).exist = false;//delete it

概率最大的框的在Bbox向量组中的序列存于order之中,存于向量hero之中,然后当前boundingBox删掉,其exist设为false

  1. if(IOU>overlap_threshold){
  2. boundingBox_.at(num).exist=false;
  3. for(vector<orderScore>::iterator it=bboxScore_.begin(); it!=bboxScore_.end();it++){
  4. if((*it).oriOrder == num) {
  5. (*it).oriOrder = -1;
  6. break;
  7. }
  8. }
  9. }

与最大概率框IOU大于阈值的框也删掉。首先是boundingBox的exist设为false,然后bboxScore的oriOrder设为-1

vector::inerator

http://www.cplusplus.com/reference/vector/vector/

2.5 最终保留的框

  1. for(int i=0;i<heros.size();i++)
  2. boundingBox_.at(heros.at(i)).exist = true;

只是将最终保留的框的exist设为true,删掉的框exist设为false,但是其内存空间还是占用的。

三、python代码解析

  1. def nms(boxes, threshold, method):
  2. if boxes.size == 0:
  3. return np.empty((0, 3))
  4. x1 = boxes[:, 0]
  5. y1 = boxes[:, 1]
  6. x2 = boxes[:, 2]
  7. y2 = boxes[:, 3]
  8. s = boxes[:, 4]
  9. area = (x2 - x1 + 1) * (y2 - y1 + 1)
  10. s_sort = np.argsort(s)
  11. pick = np.zeros_like(s, dtype=np.int16)
  12. counter = 0
  13. while s_sort.size > 0:
  14. i = s_sort[-1]
  15. pick[counter] = i
  16. counter += 1
  17. idx = s_sort[0:-1]
  18. xx1 = np.maximum(x1[i], x1[idx])
  19. yy1 = np.maximum(y1[i], y1[idx])
  20. xx2 = np.minimum(x2[i], x2[idx])
  21. yy2 = np.minimum(y2[i], y2[idx])
  22. w = np.maximum(0.0, xx2 - xx1 + 1)
  23. h = np.maximum(0.0, yy2 - yy1 + 1)
  24. inter = w * h
  25. if method is 'Min':
  26. o = inter / np.minimum(area[i], area[idx])
  27. else:
  28. o = inter / (area[i] + area[idx] - inter)
  29. s_sort = s_sort[np.where(o <= threshold)]
  30. pick = pick[0:counter]
  31. return pick

np.empty

https://docs.scipy.org/doc/numpy/reference/generated/numpy.empty.html

https://blog.csdn.net/HHTNAN/article/details/78590780

  1. if boxes.size == 0:
  2. return np.empty((0, 3))

这个表示若是没有输入相应的框则返回空数组,数组中带0则数组不存在,输出为空 []

s_sort

https://blog.csdn.net/HARDBIRD123/article/details/82261651

3.1 按照置信概率排序

  1. def nms(boxes, threshold, method):
  2. if boxes.size == 0:
  3. return np.empty((0, 3))
  4. x1 = boxes[:, 0]
  5. y1 = boxes[:, 1]
  6. x2 = boxes[:, 2]
  7. y2 = boxes[:, 3]
  8. s = boxes[:, 4]
  9. area = (x2 - x1 + 1) * (y2 - y1 + 1)
  10. s_sort = np.argsort(s)
  11. pick = np.zeros_like(s, dtype=np.int16)
  12. counter = 0

这部分代码计算了相应的区域的面积,然后运用numpy.argsort函数对置信概率进行排序。

numpy.argsort函数

https://docs.scipy.org/doc/numpy/reference/generated/numpy.argsort.html

针对s排序的顺序存在s_sort数组之中。

numpy.zeros_like函数

https://docs.scipy.org/doc/numpy/reference/generated/numpy.zeros_like.html

返回一个与初始置信概率数组相同结构的数组 s=boxes[:,4],(这里数据类型为int16)。pick为最终选用的置信概率。

3.2  IOU的计算

  1. while s_sort.size > 0:
  2. i = s_sort[-1]
  3. pick[counter] = i
  4. counter += 1
  5. idx = s_sort[0:-1]
  6. xx1 = np.maximum(x1[i], x1[idx])
  7. yy1 = np.maximum(y1[i], y1[idx])
  8. xx2 = np.minimum(x2[i], x2[idx])
  9. yy2 = np.minimum(y2[i], y2[idx])
  10. w = np.maximum(0.0, xx2 - xx1 + 1)
  11. h = np.maximum(0.0, yy2 - yy1 + 1)
  12. inter = w * h
  13. if method is 'Min':
  14. o = inter / np.minimum(area[i], area[idx])
  15. else:
  16. o = inter / (area[i] + area[idx] - inter)
  17. s_sort = s_sort[np.where(o <= threshold)]

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/708758
推荐阅读
相关标签
  

闽ICP备14008679号