lingvo.tasks.car.pointnet module¶
PointNet architecture.
- PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation
-
class
lingvo.tasks.car.pointnet.PointNet[source]¶ Bases:
lingvo.tasks.car.builder_lib.ModelBuilderBaseBuilder for PointNet layers.
-
_ConcatWithOnehot(name)[source]¶ Make an onehot from shape category id and concat with point features.
See original Pointnet paper for justification.
- Parameters
name – Name of the layer.
- Returns
Params for a layer that updates the NestedMap features value with the input features + a one hot encoding of the category id.
-
-
class
lingvo.tasks.car.pointnet.PointNetPP[source]¶ Bases:
lingvo.tasks.car.builder_lib.ModelBuilderBaseBuilder for PointNet++ Model.