NVIDIA / vid2vid

Pytorch implementation of our method for high-resolution (e.g. 2048x1024) photorealistic video-to-video translation.
Other
8.57k stars 1.2k forks source link

The question about the "flowNet(real_B, real_B_prev) " #137

Closed ZhouYiiFeng closed 4 years ago

ZhouYiiFeng commented 4 years ago

Dear author, Thanks for your sharing. I was confused with the order of the input to the "flowNet". In the code of FlowNet2.0 it writes that FlowNet2.forward(im1,im2). According to the dataloader, FlowNet2.forward(im1,im2) means that the im1 is the previous frame and the im2 is current frame. So is there any problem? or my understanding is wrong?
I really need your help. Thank you very much.

ZhouYiiFeng commented 4 years ago

The warp means uses back-ward flow to advect the previous frame toward the current frame.