Some small fixes after the merge.
This commit is contained in:
parent
0de2379463
commit
f55ad777e1
2 changed files with 1 additions and 4 deletions
|
@ -271,8 +271,6 @@ int main (int argc, char **argv)
|
||||||
|
|
||||||
vector<string> output_similarity_align;
|
vector<string> output_similarity_align;
|
||||||
vector<string> output_hog_align_files;
|
vector<string> output_hog_align_files;
|
||||||
|
|
||||||
bool video_output = false;
|
|
||||||
|
|
||||||
double sim_scale = -1;
|
double sim_scale = -1;
|
||||||
int sim_size = 112;
|
int sim_size = 112;
|
||||||
|
|
|
@ -221,9 +221,8 @@ namespace CppInterop {
|
||||||
// perform landmark detection for every face detected
|
// perform landmark detection for every face detected
|
||||||
for(size_t face=0; face < face_detections.size(); ++face)
|
for(size_t face=0; face < face_detections.size(); ++face)
|
||||||
{
|
{
|
||||||
cv::Mat depth;
|
|
||||||
// if there are multiple detections go through them
|
// 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>^>();
|
auto landmarks_curr = gcnew System::Collections::Generic::List<System::Tuple<double,double>^>();
|
||||||
if(clnf->detected_landmarks.cols == 1)
|
if(clnf->detected_landmarks.cols == 1)
|
||||||
|
|
Loading…
Reference in a new issue