mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
simplify and fix bug (#2866)
This commit is contained in:
parent
dad29bfae7
commit
b74a6710d1
@ -88,15 +88,11 @@ int main(int argc, const char** argv)
|
||||
shape_predictor pose_model;
|
||||
deserialize("shape_predictor_68_face_landmarks.dat") >> pose_model;
|
||||
|
||||
ffmpeg::frame frame;
|
||||
array2d<rgb_pixel> img;
|
||||
|
||||
// Grab and process frames until the main window is closed by the user.
|
||||
while(cap.read(frame) && !win.is_closed())
|
||||
while(cap.read(img) && !win.is_closed())
|
||||
{
|
||||
// Convert the frame object into a dlib image object
|
||||
convert(frame, img);
|
||||
|
||||
// Detect faces
|
||||
std::vector<rectangle> faces = detector(img);
|
||||
// Find the pose of each face.
|
||||
|
Loading…
Reference in New Issue
Block a user