MTCNN_face_detection_alignment icon indicating copy to clipboard operation
MTCNN_face_detection_alignment copied to clipboard

scans location recover in function about generateBoundingBox() ?

Open Wenchao-Du opened this issue 6 years ago • 1 comments

i have been reimplementing this work presently, but i have a problem about the "P-net",we need recover original scans location from output feature maps, but why the stride was set 2, i could not understand it clearly, the code is follow: stride=2; boundingbox=[fix((stride*(boundingbox-1)+1)/scale) fix((stride*(boundingbox-1)+cellsize-1+1)/scale) score reg]; could you explain it simplely? thanks.

Wenchao-Du avatar Nov 03 '17 10:11 Wenchao-Du

Because P-net only have one pooling layer, namely shifting one step in output feature map is equal to shifting two step in input layer.

ZhiqiJiang avatar Dec 20 '18 00:12 ZhiqiJiang