diff --git a/examples/ffmpeg_webcam_face_pose_ex.cpp b/examples/ffmpeg_webcam_face_pose_ex.cpp index 7953855cf..38d2e7608 100644 --- a/examples/ffmpeg_webcam_face_pose_ex.cpp +++ b/examples/ffmpeg_webcam_face_pose_ex.cpp @@ -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 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 faces = detector(img); // Find the pose of each face.