Semantic Segmentation using PointNet/PPFNet on own data #4374
Unanswered
WizKhalista
asked this question in
Q&A
Replies: 1 comment 3 replies
-
I think i figured it out, i just needed to use the PointConv Layer from the Pointnet instead of the PPFConv Layers and also there was an issue with building my Data Object from the Dataset. So i can see that the Model is clearly learning things. Pointclouds for training would look like this:The Scene i want to predict would look something like this:Do you think that this would be possible? Best regards Marcel |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
i recently already had a question and I am not really progressing at the momemt, so i hope someone can help me.
Task:
My main task is semantic segmentation of a scene, more detailed i have many objects recorded by a camera and i want to segment the Pointcloud, coming from the Camera so that every Object is assigned the correct class.




The Objects are Bolt/Nut/Cylinder/Quader as shown here:
My Goal would be in a scene like this, to assign each object the correct class:

What i did:
I created a Dataset for the 4 Objects, where every Object is in different Rotations, since when predicting on a scene the orientation of the Objects varies. I split it into Train/Validation with 80/20 %.
Then i trained the Model and reached a Train accuracy of 98%-100% but the Validation accuracy is stagnating on 15%-25%. Since that was a sign of overfitting for me i already used Dropout etc. but i can get good results. Also when predicting multiple objects in one frame, every Point just gets the same class (as shown on the picture all Objects are Red=Nut).
Is my idea of training on single Objects (Bolt/Nut/Quader/Cylinder) and then expecting it to work on a scene with multiple Objects in it wrong?
I hope someone can help me and maybe already used the Pointnet/PPFNet for his own Segmentation purposes.
Thanks in advance!
Regards Marcel
Beta Was this translation helpful? Give feedback.
All reactions