Skip to content

Commit

Permalink
Fixed a minor bug in extract_highdim_face_lbp_descriptors() which was…
Browse files Browse the repository at this point in the history
… pointed

out by Yan Xu.  One of the face locations was mistakenly used twice while
another was skipped.  This change breaks backwards compatibility with the
previous feature extraction output but should slightly improve accuracy of
classifiers trained using these features.
  • Loading branch information
davisking committed Jun 8, 2015
1 parent a14938a commit 3286a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlib/image_transforms/lbp.h
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ namespace dlib
parts.push_back(det.part(17));
parts.push_back(det.part(21));
parts.push_back(det.part(22));
parts.push_back(det.part(28));
parts.push_back(det.part(26));
parts.push_back(det.part(36));
parts.push_back(det.part(39));
parts.push_back(det.part(42));
Expand Down

0 comments on commit 3286a0a

Please sign in to comment.