mtcnn_tf icon indicating copy to clipboard operation
mtcnn_tf copied to clipboard

MTCNN implement by tensorflow. Easy to training and testing.

Results 7 mtcnn_tf issues
Sort by recently updated
recently updated
newest added

Please review MTCNN TensorFlow code at https://github.com/look4pritam/TensorFlowMTCNN on CelebA branch.

# 2. NEG: random to crop sample image in bbox inside In the line 84, iou should be Iou 83: Iou = IoU(crop_box, boxes) 84: if np.max(iou) >= 0.3: continue

请教P-Net检测:输入经resize后的图片检测成功后,需将得到的box坐标还原至原图上,这个操作中乘上stride是什末意思 ? 代码如下 boundingbox = np.vstack([np.round((self.stride * t_index[1]) / scale), np.round((self.stride * t_index[0]) / scale), np.round((self.stride * t_index[1] + cellsize) / scale), np.round((self.stride * t_index[0] + cellsize) / scale), score,...

hello Bob, when I train the face data,there is an error: assert(img is not None). but i can show the image in the code, i don't know where is the...

Hello Bob, thank you for such nice code. your repo is much cleaner than other versions. Hovewer, I found one tiny error in gen_hard_bbox_rnet_onet.py in line 191: `minFace = 24`...

if I have to train my own dataset, How do I do that? how the dataset has to be?

thank you very much for the project. its extremely helpful : ) however, it seems the location is slightly inaccurate. do you think a larger input with a more complex...