本文主要是介绍matlab中的IoU计算函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
突然在代码中撇到了Faster R-CNN中的IoU计算函数,计算两个bounding box之间的IoU值。IoU计算很简单但是很常用,因为看过多次代码都没有注意过,因此记录一下。
该函数比较简单,转载自Faster R-CNN代码,作者Pedro Felzenszwalb, Ross Girshick。
function o = boxoverlap(a, b)
% Compute the symmetric intersection over union overlap between a set of
% bounding boxes in a and a single bounding box in b.
%
% a a matrix where each row specifies a bounding box
% b a matrix where each row specifi
这篇关于matlab中的IoU计算函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!