Commit 4a78d8b2 authored by oscar's avatar oscar

加入打印

parent 8122d5a9
......@@ -9,6 +9,7 @@
#include <memory>
#include <vector>
#include "Iou.h"
#include "LogBase.h"
template<class T>
class BaseTracker
......@@ -146,6 +147,7 @@ void BaseTracker<T>::AssociateDetectionsToTrackers(const std::vector<std::vector
if (0 == association[i][j])
{
// Filter out matched with low IOU
SDK_LOG(SDK_INFO, "match info i = %d,j = %d, iou_matrix = %f, m_iou_threshold = %f",i,j, iou_matrix[i][j], trk.second->m_iou_threshold);
if (iou_matrix[i][j] >= trk.second->m_iou_threshold)
{
matched[trk.first] = i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment