自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (5)
  • 收藏
  • 关注

原创 基础知识3:PCL中 copyPointCloud的使用

本文就自己在pcl中碰到过的copyPointCloud两种使用方法进行了总结: Part 1:完全拷贝到新的点云之中:pcl::copyPointCloud (const pcl::PointCloud &cloud_in,pcl::PointCloud &cloud_out) pcl::PointCloud<pcl::PointXYZ>::Ptr src(n...

2018-07-24 15:11:04 11287 3

原创 基础知识2:PCL中pcl::PointCloud::Ptr 和Pcl::PointCloud两个类的相互转换

1:Ptr类型和非Ptr类型相互转换pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_Ptr(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ> cloud; cloud=*cloud_Ptr; cloud_Ptr=cloud.makeShare...

2018-07-10 17:05:08 12313

原创 基础知识 1:PCL连接两片点云

得到点云面片后经过一系列的处理(滤波、平滑、ICP等),往往涉及到点云的连接,这里简单测试两片点云的连接。1:非Ptr格式的点云a:直接连接    pcl::PointCloud<pcl::PointXYZ> cloud_a, cloud_b, cloud_c;     cloud_a.width = 5;     cloud_a.height = cloud_b.height = n...

2018-07-06 11:38:39 3009 3

kdtree搜索近邻

KD树搜索近邻。输入点云为随机生成的,可以换成自己的点云数据。

2018-07-16

opencv tutorials

此pdf主要是opencv 的使用 ,对于刚学习图像处理的同志们有帮助,当然也可以去官网看网页版。。。请依口味下载。。。

2018-07-06

Levenberg-Marquardt算法

LM算法 ( Levenberg-Marquardt)英文版

2012-10-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除