jhb86253817/PIPNet

crop process issue

BerylLuo opened this issue · 1 comments

det_ymin += int(det_height * (det_box_scale-1)/2)

Should line101 be changed to:
det_ymin -= int(det_height * (det_box_scale - 1) / 2)

same in demo.py

det_ymin += int(det_height * (det_box_scale-1)/2)

Should line101 be changed to: det_ymin -= int(det_height * (det_box_scale - 1) / 2)

same in demo.py

see the paper, landmark detector need to crop some forehead.