StevenBanama/C3AE

what is the exact different scales of one face?

Closed this issue · 3 comments

In the paper, three granularity levels images of one face were crop.What is the exact size of the three images? @StevenBanama

you can find my proccessing code in function named "gen_boundbox".
I have attamptted to measure the scale of origin paper.

[(xmin - w_h_margin, ymin - w_h_margin), (xmax + w_h_margin, ymax + w_h_margin)], # outter box
[(nose_x - top2nose, nose_y - top2nose), (nose_x+top2nose, nose_y + top2nose)], # middle box
[(nose_x - w//2, nose_y - w//2), (nose_x + w//2, nose_y + w//2)] # outer box # inner box

@MoonBunnyZZZ you can find origin picture in the dataset, and you can get three bound box if do it as above.
if you are in China, you'd better open a vpn to see the cropped picture in the README. Or you must clone the repos and you can find what you want in the dir named "assets" in my repos.

Thank you very much