人脸检测批处理(MTCNN)

问题描述 投票:0回答:1

mtcnn批量处理可以检测人脸吗?我需要从 100 万张图像中检测人脸。

如果可以的话,请分享实现这一目标的方法。

deep-learning batch-processing face-detection
1个回答
0
投票

按照这个

batch_boxes, batch_points = detect_face(
                img, self.min_face_size,
                self.pnet, self.rnet, self.onet,
                self.thresholds, self.factor,
                self.device
            )

会进行批量推理

© www.soinside.com 2019 - 2024. All rights reserved.