Commit bc11e397 authored by Davis King's avatar Davis King

Just cleaned up the code a little to make it easier to follow.

parent c56f3465
...@@ -267,6 +267,9 @@ namespace dlib ...@@ -267,6 +267,9 @@ namespace dlib
// Measure the loss augmented score for the detections which hit a truth rect. // Measure the loss augmented score for the detections which hit a truth rect.
std::vector<double> truth_score_hits(truth_rects[idx].size(), 0); std::vector<double> truth_score_hits(truth_rects[idx].size(), 0);
// keep track of which truth boxes we have hit so far.
std::vector<bool> hit_truth_table(truth_rects[idx].size(), false);
std::vector<rectangle> final_dets; std::vector<rectangle> final_dets;
// The point of this loop is to fill out the truth_score_hits array. // The point of this loop is to fill out the truth_score_hits array.
for (unsigned long i = 0; i < dets.size() && final_dets.size() < max_num_dets; ++i) for (unsigned long i = 0; i < dets.size() && final_dets.size() < max_num_dets; ++i)
...@@ -284,16 +287,20 @@ namespace dlib ...@@ -284,16 +287,20 @@ namespace dlib
{ {
// if this is the first time we have seen a detect which hit truth_rects[truth.second] // if this is the first time we have seen a detect which hit truth_rects[truth.second]
const double score = dets[i].first - thresh; const double score = dets[i].first - thresh;
if (truth_score_hits[truth.second] == 0) if (hit_truth_table[truth.second] == false)
truth_score_hits[truth.second] += score - loss_per_missed_target; {
hit_truth_table[truth.second] = true;
truth_score_hits[truth.second] += score;
}
else else
{
truth_score_hits[truth.second] += score + loss_per_false_alarm; truth_score_hits[truth.second] += score + loss_per_false_alarm;
} }
} }
}
hit_truth_table.assign(hit_truth_table.size(), false);
// keep track of which truth boxes we have hit so far.
std::vector<bool> hit_truth_table(truth_rects[idx].size(), false);
final_dets.clear(); final_dets.clear();
// Now figure out which detections jointly maximize the loss and detection score sum. We // Now figure out which detections jointly maximize the loss and detection score sum. We
// need to take into account the fact that allowing a true detection in the output, while // need to take into account the fact that allowing a true detection in the output, while
...@@ -309,7 +316,7 @@ namespace dlib ...@@ -309,7 +316,7 @@ namespace dlib
const double truth_match = truth.first; const double truth_match = truth.first;
if (truth_match > match_eps) if (truth_match > match_eps)
{ {
if (truth_score_hits[truth.second] >= 0) if (truth_score_hits[truth.second] > loss_per_missed_target)
{ {
if (!hit_truth_table[truth.second]) if (!hit_truth_table[truth.second])
{ {
......
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