Some small fixes after the merge.

This commit is contained in:
Tadas Baltrusaitis 2017-10-18 03:09:47 -04:00
parent 0de2379463
commit f55ad777e1
2 changed files with 1 additions and 4 deletions

View File

@ -271,8 +271,6 @@ int main (int argc, char **argv)
vector<string> output_similarity_align;
vector<string> output_hog_align_files;
bool video_output = false;
double sim_scale = -1;
int sim_size = 112;

View File

@ -221,9 +221,8 @@ namespace CppInterop {
// perform landmark detection for every face detected
for(size_t face=0; face < face_detections.size(); ++face)
{
cv::Mat depth;
// if there are multiple detections go through them
bool success = ::LandmarkDetector::DetectLandmarksInImage(image->Mat, depth, face_detections[face], *clnf, *modelParams->getParams());
bool success = ::LandmarkDetector::DetectLandmarksInImage(image->Mat, face_detections[face], *clnf, *modelParams->getParams());
auto landmarks_curr = gcnew System::Collections::Generic::List<System::Tuple<double,double>^>();
if(clnf->detected_landmarks.cols == 1)