Which methods can be used to extract a feature vector from a point cloud?
See original GitHub issueI have a set of n
m
-dimensional points contained in a pointcloud P
, where P.shape == (n, m)
and n
can vary.
I want to map P
to a feature vector v
, like the global feature vector in the PointNet paper, where v.shape == (1024,)
.
Is there a straightforward way to recreate the original PointNet with this library?
And, are there any other comparable models that are easily recreatable?
Cheers!
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Which methods can be used to extract a feature vector from a ...
I have a set of n m -dimensional points contained in a pointcloud P , where P.shape == (n, m) and n can...
Read more >Feature Extraction from Point Clouds
This paper describes a new method to extract feature lines directly from a surface point cloud. No surface reconstruction is needed.
Read more >Feature Extraction from 3D Point Cloud Data Based ... - Hindawi
In this paper, a novel method is proposed for extracting the geometric features from 3D point cloud data based on discrete curves. We...
Read more >Feature Extraction and Analysis for 3D Point Cloud-Based ...
The proposed methodology 3D point cloud–based feature extraction and object ... used to extract features and Machine Learning is employed to understand and ......
Read more >A GIS Pipeline for LIDAR Point Cloud Feature Extraction
To capture features from LIDAR data points, the first step is converting the 3d vector points (X, Y, Z) into grid-based raster representation....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@cisprague Have a look at https://github.com/nicolas-chaulet/torch-points3d
Perfect! Thanks again. Lastly, can you comment on the speed of executing those PointNet++ and PointCNN implementations? My application is a bit time-sensitive.