foivospar / Arc2Face

[ECCV 2024🔥] Arc2Face: A Foundation Model of Human Faces
https://arc2face.github.io/
MIT License
492 stars 32 forks source link

I input the image with FFHQ1024 resolution into antelopev2 and it doesn't detect the face #17

Open SongChaotian opened 2 months ago

foivospar commented 2 months ago

This usually happens when the input image is tightly cropped around the face. In such cases, you can detect the face by reducing the detection size (e.g., to 256) :

app.prepare(ctx_id=0, det_size=(256, 256))
insafim commented 1 week ago

Thanks man. I was struggling to figure this out