// height to match the average aspect ratio of the boxes given the target_size.
detector_windows.push_back(p);
running_stats<double>avg_width,avg_height;
}
DLIB_CASSERT(detector_windows.size()!=0,"You can't call mmod_options's constructor with a set of boxes that is empty (or only contains ignored boxes).");
// Convert from mmod_rect to rectangle so we can call
// find_tight_overlap_tester().
std::vector<std::vector<rectangle>>temp;
for(auto&&bi:boxes)
for(auto&&bi:boxes)
{
{
std::vector<rectangle>rtemp;
std::vector<rectangle>rtemp;
...
@@ -391,26 +455,10 @@ namespace dlib
...
@@ -391,26 +455,10 @@ namespace dlib
{
{
if(b.ignore)
if(b.ignore)
continue;
continue;
avg_width.add(b.rect.width());
avg_height.add(b.rect.height());
rtemp.push_back(b.rect);
rtemp.push_back(b.rect);
}
}
temp.push_back(std::move(rtemp));
temp.push_back(std::move(rtemp));
}
}
// now adjust the box size so that it is about target_pixels pixels in size
sout<<"This is because the rectangle is smaller than the detection window which has a width"<<endl;
std::cout<<"This is because the rectangle is smaller than the best matching detection window, which has a width ";
sout<<"and height of "<<options.detector_width<<" and "<<options.detector_height<<"."<<endl;
std::cout<<"and height of "<<options.detector_windows[det_idx].width<<" and "<<options.detector_windows[det_idx].height<<"."<<std::endl;
}
}
else
else
{
{
sout<<"This is because the rectangle's aspect ratio is too different from the detection window,"<<endl;
std::cout<<"This is because the rectangle's aspect ratio is too different from the best matching detection window, ";
sout<<"which has a width and height of "<<options.detector_width<<" and "<<options.detector_height<<"."<<endl;
std::cout<<"which has a width and height of "<<options.detector_windows[det_idx].width<<" and "<<options.detector_windows[det_idx].height<<"."<<std::endl;
}
}
throwimpossible_labeling_error(sout.str());
returntrue;
}
}
// now map through the CNN to the output layer.
// now map through the CNN to the output layer.
...
@@ -805,13 +987,12 @@ namespace dlib
...
@@ -805,13 +987,12 @@ namespace dlib
consttensor&output_tensor=net.get_output();
consttensor&output_tensor=net.get_output();
if(!get_rect(output_tensor).contains(tensor_p))
if(!get_rect(output_tensor).contains(tensor_p))
{
{
std::ostringstreamsout;
std::cout<<"Warning, ignoring object. We encountered a truth rectangle located at "<<rect<<" that is too close to the edge ";
sout<<"Encountered a truth rectangle located at "<<rect<<" that is too close to the edge"<<endl;
std::cout<<"of the image to be captured by the CNN features."<<std::endl;
sout<<"of the image to be captured by the CNN features."<<endl;