HRNet / HRNet-Facial-Landmark-Detection

This is an official implementation of facial landmark detection for our TPAMI paper "Deep High-Resolution Representation Learning for Visual Recognition". https://arxiv.org/abs/1908.07919

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how the get the coordinates of keypoint from the output of the model

bengadisoufiane opened this issue · comments

how the get the coordinates of keypoint from the output of the model

@bengadisoufiane
Hi!

I think, you need to decode like this code.

Especially this part.

output = model(inp)
score_map = output.data.cpu()
preds = decode_preds(score_map, meta['center'], meta['scale'], [64, 64])

FYI!