Getting rid of some warnings.
This commit is contained in:
parent
5416048697
commit
4c2e0bd9a0
4 changed files with 7 additions and 7 deletions
|
@ -224,7 +224,7 @@ void write_out_landmarks(const string& outfeatures, const LandmarkDetector::CLNF
|
|||
featuresFile << "au intensities: " << au_intensities.size() << endl;
|
||||
featuresFile << "{" << endl;
|
||||
|
||||
for (int i = 0; i < au_intensities.size(); ++i)
|
||||
for (size_t i = 0; i < au_intensities.size(); ++i)
|
||||
{
|
||||
// Use matlab format, so + 1
|
||||
featuresFile << au_intensities[i].first << " " << au_intensities[i].second << endl;
|
||||
|
@ -236,7 +236,7 @@ void write_out_landmarks(const string& outfeatures, const LandmarkDetector::CLNF
|
|||
featuresFile << "au occurences: " << au_occurences.size() << endl;
|
||||
featuresFile << "{" << endl;
|
||||
|
||||
for (int i = 0; i < au_occurences.size(); ++i)
|
||||
for (size_t i = 0; i < au_occurences.size(); ++i)
|
||||
{
|
||||
// Use matlab format, so + 1
|
||||
featuresFile << au_occurences[i].first << " " << au_occurences[i].second << endl;
|
||||
|
|
|
@ -786,7 +786,7 @@ void post_process_output_file(FaceAnalysis::FaceAnalyser& face_analyser, string
|
|||
|
||||
int begin_ind = -1;
|
||||
|
||||
for (int i = 0; i < tokens.size(); ++i)
|
||||
for (size_t i = 0; i < tokens.size(); ++i)
|
||||
{
|
||||
if (tokens[i].find("AU") != string::npos && begin_ind == -1)
|
||||
{
|
||||
|
@ -802,14 +802,14 @@ void post_process_output_file(FaceAnalysis::FaceAnalyser& face_analyser, string
|
|||
outfile << output_file_contents[0].c_str() << endl;
|
||||
|
||||
// Write the contents
|
||||
for (int i = 1; i < output_file_contents.size(); ++i)
|
||||
for (size_t i = 1; i < output_file_contents.size(); ++i)
|
||||
{
|
||||
std::vector<std::string> tokens;
|
||||
boost::split(tokens, output_file_contents[i], boost::is_any_of(","));
|
||||
|
||||
outfile << tokens[0];
|
||||
|
||||
for (int t = 1; t < tokens.size(); ++t)
|
||||
for (size_t t = 1; t < tokens.size(); ++t)
|
||||
{
|
||||
if (t >= begin_ind && t < end_ind)
|
||||
{
|
||||
|
|
|
@ -707,7 +707,7 @@ void FaceAnalyser::ExtractAllPredictionsOfflineReg(vector<std::pair<std::string,
|
|||
|
||||
// Find the current id of the AU and the corresponding cutoff
|
||||
int au_id = -1;
|
||||
for (int a = 0; a < dyn_au_names.size(); ++a)
|
||||
for (size_t a = 0; a < dyn_au_names.size(); ++a)
|
||||
{
|
||||
if (au_name.compare(dyn_au_names[a]) == 0)
|
||||
{
|
||||
|
|
|
@ -645,7 +645,7 @@ bool CLNF::DetectLandmarks(const cv::Mat_<uchar> &image, const cv::Mat_<float> &
|
|||
if(parts_used)
|
||||
{
|
||||
|
||||
for (int part_model = 0; part_model < hierarchical_models.size(); ++part_model)
|
||||
for (size_t part_model = 0; part_model < hierarchical_models.size(); ++part_model)
|
||||
{
|
||||
vector<pair<int, int>> mappings = this->hierarchical_mapping[part_model];
|
||||
|
||||
|
|
Loading…
Reference in a new issue