> I want test some other image on your model. But I dont konw how to do it. If I have image sequence with pose data,how to test?
zhywanna opened this issue · 2 comments
I want test some other image on your model. But I dont konw how to do it. If I have image sequence with pose data,how to test?
- Align the images in the way of StyleGAN. You can refer to this script align_images.py.
- Project the aligned images into the W space, also known as GAN inversion. Different from the common 2D inversion, you'd better set an appropriate yaw/pitch/fov for the CIPS-3D generator to make the initial pose of G(w) and the image to be inverted consistent.
- After you get the w of the image, you can reconstruct images of different styles using G'(w). G' can be obtained by interpolating generators of different domains.
Hope this helps.
Originally posted by @PeterouZh in #7 (comment)
Hi Zhou again,
I'm currently studying and doing experiment on inverting 3D-aware-gan with optimization based method, and just found this earlier issue. Could you please show me some details about your step 2 ? Any advice will be really helpful for a beginner! Thanks a lot!
Hi Zhou again, I'm currently studying and doing experiment on inverting 3D-aware-gan with optimization based method, and just found this earlier issue. Could you please show me some details about your step 2 ? Any advice will be really helpful for a beginner! Thanks a lot!
I think this paper will help you https://arxiv.org/abs/2102.07064.