Pointnet_Pointnet2_pytorch icon indicating copy to clipboard operation
Pointnet_Pointnet2_pytorch copied to clipboard

PointNet and PointNet++ implemented by pytorch (pure python) and on ModelNet, ShapeNet and S3DIS.

Results 166 Pointnet_Pointnet2_pytorch issues
Sort by recently updated
recently updated
newest added
trafficstars

when I run show3d_balls.py on windows,error: OSError: no file with expected extension

this is performance your running ![image](https://user-images.githubusercontent.com/35087665/189014894-1fa77216-4020-4e61-98be-558d0e7ee62e.png) it is mine, point_seg_net.just 20 epoch. you can see the result of log dir in my fork. ![image](https://user-images.githubusercontent.com/35087665/189015075-81beb12e-034f-412a-b653-05ea8691253d.png) i use s3dis dataset. i run...

**I used radar to collect a part of the point cloud and save it in a .ply file. At the same time, I completed the reproduction work based on the...

Hi, this is a wonderful project, but I have a question about after trained my own data and got the best model, how can I use the trained model to...

how should i do to use the model? Where should be modified?

Hello, I would like to ask, why does it take a lot of time to test data, and how can we improve the test speed? The super parameters are set...

Thank you very much for your contribution! 1. I would like to ask why the IoU of one of the types has always been 0 when I use pointnet++ to...

![image](https://github.com/yanx27/Pointnet_Pointnet2_pytorch/assets/148300443/080a0ba8-91ea-4ad6-84e7-5ec4cf2e0fd6)

In PointNet++ model there are three SetAbstraction layers (each having three convolutional, Batchnorm and ReLU layers) and in last two the number of channels are increased by 3. I am...

球采样应该是在半径范围内,选择距离当前点最近的点。贴出修改后的方法: ```python def query_ball_point(radius, nsample, xyz, new_xyz, fps_idx): """ Input: radius: local region radius nsample: max sample number in local region xyz: all points, [B, N, 3] new_xyz: query points,...