IoU
IoU copied to clipboard
A C++ implement of intersection over union (IoU) ratio calculation.
Results
3
IoU issues
Sort by
recently updated
recently updated
newest added
in iou.cpp line27-29,it is said: if (abs(pp1^pp2) < EPS && pp1*pp2 < EPS) return true; which from my point of view is |pp1|*|pp2|*sin(pp1,pp2)
73行被除数为0导致崩溃,不懂啥原因。