ece4580:module_pcd
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ece4580:module_pcd [2017/02/03 00:19] – [Module #2: Point Cloud Algorithms] pvela | ece4580:module_pcd [2024/08/20 21:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ~~NOTOC~~ | ||
====== Point Clouds Processing and Interpretation ====== | ====== Point Clouds Processing and Interpretation ====== | ||
- | 3D point cloud is a commonly used data in spatial modeling & understanding. Such a data can be captured from laser scanners, stereo camera, or structured-light cameras. Point cloud processing is essential for applications like self-driving cars, infrastructure inspection, construction modeling, etc.. Here we will go through some basic modules of a point cloud processing pipeline, include 1) clustering, 2) normal vector estimation, 3) point cloud descriptor extraction, 4) point cloud registration and 5) triangulation. | + | 3D point cloud is a commonly used data in spatial modeling & understanding. Such a data can be captured from laser scanners, stereo camera, or structured-light cameras. Point cloud processing is essential for applications like self-driving cars, infrastructure inspection, construction modeling, etc.. |
===== Module #1: A Basic Point Cloud Processing System | ===== Module #1: A Basic Point Cloud Processing System | ||
+ | ---------------------------------- | ||
- | __** Week #1: 3D Points Class and Basics**__ \\ | + | Here we will go through |
- | For this week, we will start with some basis stuff. There is a basic point cloud stub class that we will use to augment the existing Matlab [[https:// | + | |
- | Download the **pts3D** Matlab class stub (TO BE PROVIDED ON FRIDAY OR SATURDAY) and the sample point cloud file here (TO BE DONE). | + | |
- | | + | - [[ECE4580:Module_PCD: |
- | - Flesh out the **normalizePose** function. | + | - [[ECE4580: |
- | - Flesh out the **numPoints** function (look into the pointCloud class to see how to obtain the value). | + | - [[ECE4580: |
- | - Flesh out the **removeInds** function (again look into the pointCloud class operations to see how to make this easier). | + | - [[ECE4580: |
- | + | | |
- | Regarding the pose normalization function, here are some [[ECE4580: | + | |
- | + | | |
- | /*Grab data sets, learn to load point cloud data and visualize it. | + | |
- | + | ||
- | A list of point cloud dataset can be found [[http:// | + | |
- | + | ||
- | + | ||
- | For those feel comfortable with C++ programming, | + | |
- | */ | + | |
- | + | ||
- | __** Week #2: Connected | + | |
- | + | ||
- | Flesh out the member functions for performing connected component clustering. This will involve: | + | |
- | + | ||
- | - Completing the connectivity matrix member function. | + | |
- | - Parsing the function to find [[ECE4580: | + | |
- | - Giving each component a different color for plotting purposes. | + | |
- | - Returning the label of each point in a vector list. | + | |
- | + | ||
- | Be careful if you try to run this on random data. Because the connected components Matrix is memory intensive, it can only be done with point clouds that are relatively small (on the order of 20 thousand points). | + | |
- | + | ||
- | __** Week #3: Local Normal | + | |
- | + | ||
- | If the point cloud data represents an object as scanned from some device, usually the points lie on the surface of the object. So they are really 2D structurally speaking (local to each point), though they are in 3D. Let's write a function to estimate the local normals to the point cloud, plus one more to visualize them. There are actually two ways to perform the local normal estimation. | + | |
- | + | ||
- | - One is via principal component analysis, otherwise known as [[ECE4580: | + | |
- | - The other is using the [[ECE4580: | + | |
- | + | ||
- | __** Week #4: Clustering by Normal Structure.**__ \\ | + | |
- | + | ||
- | The connected component clustering does not do too well when different objects are actually connected, say because they are touching, or one is resting on the other. | + | |
- | + | ||
- | Perform a region growing clustering strategy using the connected components for the region expansion candidate, and using the angular difference between normals to assess membership to the same cluster. | + | |
- | + | ||
- | /*Read the slides on [[http:// | + | |
- | + | ||
- | For Matlab folks, an exemplar implementation of normal vector estimation can be found [[https:// | + | |
- | + | ||
- | For PCL folks, you may refer to the [[http:// | + | |
- | */ | + | |
- | + | ||
- | __** Week #5: Triangulation **__ \\ | + | |
- | Read the page of Delaunay triangulation on [[https:// | + | |
- | + | ||
- | NEED TO FLESH OUT MORE. | + | |
- | + | ||
- | /* | + | |
- | For Matlab folks, an exemplar implementation of Delaunay triangulation can be found [[https:// | + | |
- | + | ||
- | For PCL folks, there' | + | |
- | */ | + | |
===== Module #2: Point Cloud Algorithms ===== | ===== Module #2: Point Cloud Algorithms ===== | ||
+ | --------------------------------------------- | ||
+ | Here we cover 1) point cloud registration and 2) point cloud descriptor extraction. | ||
- | __** Week #1: Point Cloud Registration **__ \\ | + | - [[ECE4580: |
+ | - [[ECE4580: | ||
+ | - [[ECE4580: | ||
- | A commonly used and somewhat simple method for registering two point clouds (that presumably are of the same object or have significant similar structure), is to use what is called Iterative Closest Point (ICP). | ||
- | Read up on [[http:// | ||
- | MORE DESCRIPTION NEEDED HERE. | + | ===== Ignore ===== |
- | + | ||
- | /* | + | |
- | For Matlab folks, an exemplar implementation of ICP can be found [[https:// | + | |
- | + | ||
- | For PCL folks, you may refer to the [[http:// | + | |
- | */ | + | |
__** Week #X: Point Cloud Segmentation **__ \\ | __** Week #X: Point Cloud Segmentation **__ \\ | ||
Line 91: | Line 39: | ||
*/ | */ | ||
- | ===== Module | + | /*__** Week #X: Cloud Proximity to Another Cloud |
- | TO BE WRITTEN. | + | Get set of points that a given point cloud is near to relative to another point cloud. |
+ | |||
+ | //Notes:// Matlab function: '' | ||
+ | */ | ||
-------- | -------- |
ece4580/module_pcd.1486099188.txt.gz · Last modified: 2024/08/20 21:38 (external edit)