paschalidoud / superquadric_parsing

Code for "Superquadrics Revisited: Learning 3D Shape Parsing beyond Cuboids", CVPR 2019
https://superquadrics.com
Other
135 stars 34 forks source link

Is the predicting parameters of each primitive is independent from the other primitives #16

Closed mahmoudEltaher closed 3 years ago

mahmoudEltaher commented 3 years ago

Dears,

Kindly, i want to inquire about Is the predicting parameters of each primitive is independent from the other primitives,which means is the parameters of each primitive is independent of each other or not.how all these primitives are combined together to determine the full shape.

why the model predict primitives and at final all these primitives combines the shape,what prevent the model to predict the same primitive each time ?

why the primitives is attached to each other,what force this behavior in the prediction process

paschalidoud commented 3 years ago

Hello,

Each primitive depends on the others both in terms of their prediction (they are predicted from the same intermediate representation) and in terms of the loss (each primitive influences the loss for the rest of the primitives).

Regarding how the primitives are combined to form the whole shape, this is precisely what the loss enforces. For more details regarding the optimization objective please have a look at the paper https://superquadrics.com/learnable-superquadrics.html

Since this question is not related to the code release I am closing the issue for now.

Best, Despoina