2015_Face_Detection icon indicating copy to clipboard operation
2015_Face_Detection copied to clipboard

Question about the implementation of FCN(heatmap)

Open Seanlinx opened this issue 9 years ago • 1 comments

Hi, layumi, I am interested in the FCN method you adopt in 12-net as you mentioned in the technical report, but I get a little confused about the implementation. Could you please explain the point of deleting first col(row) of resized image in 12-net in scanpic_aflw_fast_slide.m? And why there isn't a subsequent 12-net-c?

Thanks!

Seanlinx avatar Sep 27 '16 08:09 Seanlinx

@Seanlinx

1.Because there is a stride 2 function in the net, it will skip some image and get a 1/4 small heatmap. So I make up this loss by running code four time to get a whole heatmap.

2.12netc input is the output from 12net. So I didn't use heatmap method in 12net.

layumi avatar Sep 28 '16 02:09 layumi