Increased default face chip size from get_face_chip_details()

This commit is contained in:
Davis King 2014-09-07 15:19:42 -04:00
parent 5bad0c2c4b
commit f4e50eaaec
2 changed files with 4 additions and 4 deletions

View File

@ -1617,7 +1617,7 @@ namespace dlib
inline chip_details get_face_chip_details (
const full_object_detection& det,
const unsigned long size = 100,
const unsigned long size = 200,
const double padding = 0.2
)
{
@ -1679,7 +1679,7 @@ namespace dlib
inline std::vector<chip_details> get_face_chip_details (
const std::vector<full_object_detection>& dets,
const unsigned long size = 100,
const unsigned long size = 200,
const double padding = 0.2
)
{

View File

@ -1099,7 +1099,7 @@ namespace dlib
chip_details get_face_chip_details (
const full_object_detection& det,
const unsigned long size = 100,
const unsigned long size = 200,
const double padding = 0.2
);
/*!
@ -1124,7 +1124,7 @@ namespace dlib
std::vector<chip_details> get_face_chip_details (
const std::vector<full_object_detection>& dets,
const unsigned long size = 100,
const unsigned long size = 200,
const double padding = 0.2
);
/*!