FrozenBurning / Relighting4D

[ECCV 2022] Relighting4D: Neural Relightable Human from Videos
https://frozenburning.github.io/projects/relighting4d/
Other
267 stars 19 forks source link

Question about relighting #16

Closed JiatengLiu closed 1 month ago

JiatengLiu commented 2 months ago

Hello! I want to realize how to get the relighting results like second picture in README.md?(let envmap rotate without the avatar moving)

FrozenBurning commented 2 months ago

To relight a static avatar with a rotating envmap as background, you can simply take the first frame (typically any single frame) when relighting a dynamic sequence, which will freeze your avatar to be static. To rotate the background envmap, you can do torch.roll on the tensor of envmap.

JiatengLiu commented 1 month ago

Thanks for your reply and advise, I have finished it!