diff --git a/openbr/plugins/classification/dlib.cpp b/openbr/plugins/classification/dlib.cpp index 905363d..acd4d8e 100644 --- a/openbr/plugins/classification/dlib.cpp +++ b/openbr/plugins/classification/dlib.cpp @@ -55,9 +55,9 @@ private: void setFacePoints(Template &dst) const { const QList points = dst.file.points(); - dst.file.set("LeftEye",averagePoints(points,36,42)); - dst.file.set("RightEye",averagePoints(points,42,48)); - dst.file.set("Chin",points[8]); + dst.file.set("RightEye", averagePoints(points, 36, 42)); + dst.file.set("LeftEye" , averagePoints(points, 42, 48)); + dst.file.set("Chin", points[8]); } void project(const Template &src, Template &dst) const