Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 dlib 的新手。我想在 C++ 中使用来自 dlib 的示例“地标检测”,但我想将它与*.mjpg文件而不是简单图像一起使用。不知道怎么可能?
*.mjpg
在将视频帧加载到 dlib 之前,您需要将它们提取为图像。
ffmpeg让这很容易: ffmpeg -i video_file.mjpg image_directory/frame%d.jpg
ffmpeg -i video_file.mjpg image_directory/frame%d.jpg
这将从video_file.mjpgJPEG 中提取所有帧并将它们保存在image_directory/. 然后,您可以使用这些帧来训练和测试 dlib。
video_file.mjpg
image_directory/