LizhenWangT / NormalGAN

NormalGAN: Learning Detailed 3D Human from a Single RGB-D Image (ECCV 2020)
72 stars 13 forks source link

Does it work for Azure Kinect #7

Open jiangSeu opened 2 years ago

jiangSeu commented 2 years ago

Hi, Wang

Thank you very much for your excellent work.

I want to run NormalGAN on data from Azure Kinect, does it work for Azure Kinect?

Thank you!

LizhenWangT commented 2 years ago

I have not tried on Kinect Azure, but I think it is feasible. Depth maps from Kinect Azure have less noise than Kinect v2, but they have similar noise partten. Note that you should crop the input images to our image resolution, and modify the camera intrinsics in our codes.

jiangSeu commented 2 years ago

Thank you for your reply, I'll have a try.

And Will 3D position information and depth information be retained after reconstruction?

Thank you.

LizhenWangT commented 2 years ago

The depth value will be changed by 'perse2ortho' from ops.py and 'fix_p' from test_offline.py. You can project output models back referring to the above two operations.