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/04/08 17:38] – 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 ====== | ||
Line 14: | Line 15: | ||
- [[ECE4580: | - [[ECE4580: | ||
- [[ECE4580: | - [[ECE4580: | ||
- | - [[ECE4580: | + | - [[ECE4580: |
- | + | - [[ECE4580: | |
- | ==== Week #1: 3D Points Class and Basics ==== | + | |
- | 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 | + | |
- | + | ||
- | Perform the following: | + | |
- | - Flesh out the **plot** function so it can plot the data (plot the different point matrices). | + | |
- | - Flesh out the **normalizePose** function (normalize for the sPts0X point matrices). | + | |
- | - Flesh out the **size** function (look into the pointCloud class to see how to obtain the value). | + | |
- | - Flesh out the **removeInds** function (again look into the pointCloud class operations to see how to make this easier). | + | |
- | - Flesh out the **keepOnlyInds** function. | + | |
- | + | ||
- | //Notes:// Regarding the pose normalization function, here is the [[ECE4580: | + | |
- | + | ||
- | //Explore & Deliverables:// | + | |
- | + | ||
- | When you load the points into a matrix, use the '' | + | |
- | + | ||
- | + | ||
- | /*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 Component Clustering ==== | + | |
- | Flesh out the member functions for performing [[ECE4580: | + | |
- | + | ||
- | - Completing the connectivity matrix member function. | + | |
- | - Parsing the matrix to find connected components. | + | |
- | - Giving each component a different color for plotting purposes. | + | |
- | - Returning the label of each point in a vector list. | + | |
- | + | ||
- | Be careful when you try to run this on arbitrary 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). For more than that many points, the best option is to utilize Matlab' | + | |
- | + | ||
- | //Notes:// Matlab functions that will be useful include: '' | + | |
- | + | ||
- | //Explore & Deliverables:// | + | |
- | + | ||
- | ==== Week #3: Local Normal Vector Estimation ==== | + | |
- | 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 [[ECE4580: | + | |
- | + | ||
- | - One is via principal component analysis, otherwise known as [[ECE4580: | + | |
- | - The other is using the [[ECE4580: | + | |
- | + | ||
- | For the sample point cloud file given, plot the normals. Do not really plot them all, but rather sub-sample the points array and only compute then plot the normals for those points. The Matlab example linked to in the discussion page for this problem (above link for //local normal estimation// | + | |
- | + | ||
- | ==== 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 ==== | + | |
- | + | ||
- | When the point cloud represents a surface, then it is possible to create a triangulated mesh for more rapidly visualizing the object. | + | |
- | + | ||
- | + | ||
- | + | ||
- | Given an unordered point cloud, the process of generating surface patches that attempt to reproduce the actual surface is known as //mesh triangulation// | + | |
- | [[https:// | + | |
- | These methods work with convex hull type processing, so they don't quite do the trick. | + | |
- | + | ||
- | Here, you will explore an alternative strategy to surface mesh triangulation, | + | |
- | + | ||
- | //Explore and Deliverables:// | + | |
- | + | ||
- | /* | + | |
- | For Matlab folks, an exemplar implementation of Delaunay triangulation can be found [[https:// | + | |
- | + | ||
- | For PCL folks, there' | + | |
- | */ | + | |
- | + | ||
- | ==== Week #6: Triangulation on Objects ==== | + | |
- | + | ||
- | Combine the clustering code with the triangulation code to come up with a cluster-driven surface mesh of objects in a point cloud. The idea is that, first the point cloud is clustered based on proximity and normal agreement. | + | |
===== Module #2: Point Cloud Algorithms ===== | ===== Module #2: Point Cloud Algorithms ===== | ||
- | --------------------------------- | + | --------------------------------------------- |
- | Here we cover 3) point cloud descriptor extraction, 4) point cloud registration | + | 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 128: | Line 39: | ||
*/ | */ | ||
- | __** Week #X: Cloud Proximity to Another Cloud | + | /*__** Week #X: Cloud Proximity to Another Cloud |
Get set of points that a given point cloud is near to relative to another point cloud. | Get set of points that a given point cloud is near to relative to another point cloud. | ||
//Notes:// Matlab function: '' | //Notes:// Matlab function: '' | ||
- | + | */ | |
- | ===== Module #3: Object Recognition with Point Clouds ===== | + | |
- | ----------------------------------- | + | |
- | TO BE WRITTEN. | + | |
-------- | -------- |
ece4580/module_pcd.1491687502.txt.gz · Last modified: 2024/08/20 21:38 (external edit)