QhelDIV / ShapeFormer

Official repository for the ShapeFormer Project
https://shapeformer.github.io/
190 stars 22 forks source link

Why take "Xbd" as input when performing shape completion? #8

Closed linjing7 closed 1 year ago

linjing7 commented 1 year ago

Hi, thanks for your excellent work. When I debug the demo command, I notice that you take Xbd as input when performing shape completion and use it to generate z_indices. As far as I think, during inference, the complete shape is not available, therefore, Xbd should not be taken as input into the network. Is it right? Or although Xbd is taken as input to the network, it would not affect the final result?

QhelDIV commented 1 year ago

You can specify Xbd to None during completion. The network has the option to take it because we want to visualize the Xbd as well. If you do not provide Xbd, the program will automatically ignore it without any effect.

linjing7 commented 1 year ago

Okay, thank you very much.