点云的表示方式
pcl里的点云多种表示方式:
1 | // const |
顾名思义取中值
1 | # Read in the image |
1 | import matplotlib.pyplot as plt |
不小心使用 git drop stash
误删了暂存的内容 (或是 git stash pop
后丢失),怎么恢复?
其实drop后并没有真正删除暂存的内容,而是移除了对它的引用,所以通过一些操作是可以找回的。
git st
查看当前修改
1 | On branch master |
git stash
暂存修改
1 | Saved working directory and index state WIP on master: 4d74f8a fix spell |
git stash list
查看暂存内容列表
1 | stash@{0}: WIP on master: 4d74f8a fix spell |
git stash drop stash@{0}
移除暂存内容
1 | Dropped refs/stash@{0} (0b45536f1ce7e859a85f1459d6ae34fc6cdc4039) |
以从 organized 的点云提取 RGB 信息为例
基于Mat对象的随机像素访问 API 实现,通过行列索引方式遍历每个像素值。这种方法速度较慢,不太适合用于像素遍历。
1 | void extract_1(const pcl::PointCloud<PointT>::Ptr cloud, cv::Mat &image) |
类的构造函数是类的一种特殊的成员函数,用于创建类的新对象和初始化自定义类成员。
void
。inline
, explicit
, friend
或 constexpr
const
, volatile
或者const volatile
的对象,该对象在构造完成后变为 const
public
且 inline
的。