Cleaning up includes. removing some C++ compilation warnings coming from dlib.

This commit is contained in:
Tadas Baltrusaitis
2018-05-06 20:46:18 +01:00
parent f6a9dfe95a
commit 097d01fd3d
7 changed files with 12 additions and 62 deletions

View File

@@ -84,26 +84,26 @@ Visualizer::Visualizer(std::vector<std::string> arguments)
{
if (arguments[i].compare("-verbose") == 0)
{
vis_track = true;
vis_align = true;
vis_hog = true;
vis_aus = true;
this->vis_track = true;
this->vis_align = true;
this->vis_hog = true;
this->vis_aus = true;
}
else if (arguments[i].compare("-vis-align") == 0)
{
vis_align = true;
this->vis_align = true;
}
else if (arguments[i].compare("-vis-hog") == 0)
{
vis_hog = true;
this->vis_hog = true;
}
else if (arguments[i].compare("-vis-track") == 0)
{
vis_track = true;
this->vis_track = true;
}
else if (arguments[i].compare("-vis-aus") == 0)
{
vis_aus = true;
this->vis_aus = true;
}
}