Intersection-over-union between two detections

1) You have two overlapping bounding boxes. You compute the intersection of the boxes, which is the area of the overlap. You compute the union of the overlapping boxes, which is the sum of the areas of the entire boxes minus the area of the overlap. Then you divide the intersection by the union. There is a function for that in the Computer Vision System Toolbox called bboxOverlapRatio.

2) Generally, you don't want to concatenate the color channels. What you want instead, is a 3D histogram, where the dimensions are H, S, and V.


转自:http://stackoverflow.com/questions/28723670/intersection-over-union-between-two-detections

你可能感兴趣的:(数学,Matlab,基本知识,c++常见知识,图像处理算法)