nihaomiao / CVPR23_LFDM

The pytorch implementation of our CVPR 2023 paper "Conditional Image-to-Video Generation with Latent Flow Diffusion Models"
BSD 2-Clause "Simplified" License
432 stars 43 forks source link

Inquiries about face occlusion map #41

Closed yitiaolittle closed 6 months ago

yitiaolittle commented 6 months ago

Hi,Thanks for your great work! Here are a few questions for you to answer! Why is the dark area of the face mainly the eyes, mouth, and edge contours of the face? Is there the most occlusion here? Does eye occlusion mean that the eyes may be closed? Does the occlusion of the mouth mean that there may be teeth? I don't know if I understand it right? So why do the edge contours shade so deeply? What needs to be redrawn there?

625b845ad20f82c7615e0c6f0464e05 094b2443da8ac2f480bbe80fc3b1a6b

nihaomiao commented 6 months ago

Hi, @yitiaolittle, thanks a lot for your interest in our work! The values in the occlusion map change from 0 to 1. 0 is dark and will fully mask the corresponding pixels and 1 is bright/white and will fully keep the pixel. Your understanding of eye and mouth regions should be correct. For the edge areas, I guess that the model predictions are unstable in these regions so the generated occlusion maps tend to mask them.

yitiaolittle commented 5 months ago

Hi, @yitiaolittle, thanks a lot for your interest in our work! The values in the occlusion map change from 0 to 1. 0 is dark and will fully mask the corresponding pixels and 1 is bright/white and will fully keep the pixel. Your understanding of eye and mouth regions should be correct. For the edge areas, I guess that the model predictions are unstable in these regions so the generated occlusion maps tend to mask them. Thank you very much!!