facenet_mtcnn_to_mobile icon indicating copy to clipboard operation
facenet_mtcnn_to_mobile copied to clipboard

请问,MTCNN的三个.tflite如何使用?

Open Annie201521010625 opened this issue 6 years ago • 2 comments

请问,MTCNN的三个.tflite如何使用?

Annie201521010625 avatar Sep 03 '19 08:09 Annie201521010625

@jiangxiluning : Can you plz specify how to use the three .tflite files and what is the difference between them?

sirius0503 avatar Feb 03 '20 11:02 sirius0503

Hello, as far as I know, the MTCNN detection pipeline involves 3 stages (pnet, rnet, onet). pnet does some rough processing and hands over the results (areas in the input image where faces are potentially present) to rnet. rnet further refines the results and pass them off to onet. Onet finally determines which of the proposed regions contains actual faces, and outputs the bounding box and face probabilities. So, you have to actually implement the MTCNN 3-stage pipeline and use the 3 .tflite files to load parameters into pnet, rnet, and onet (which isn't really a trivial process)

Unturned3 avatar Jun 20 '20 07:06 Unturned3