• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






任重道远-HSY

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 5 6 7 8 9 10 ··· 19 下一页

2019年11月29日

PCL点云分割
摘要: #include <pcl/ModelCoefficients.h> #include <pcl/io/pcd_io.h> #include <pcl/point_types.h> #include <pcl/filters/extract_indices.h> #include <pcl/filters/passthrough.h> #include <pcl/features/normal_3 阅读全文
posted @ 2019-11-29 13:45 任重道远-HSY 阅读(588) 评论(0) 推荐(0)
 

2019年11月28日

PCL点云滤波
摘要: 点云处理中滤波目的。滤波处理作为点云处理的第一步,对后续处理有很重要。只有在滤波处理流程中将噪声点、离群点、空洞、数据压缩等按照后续处理定制,才能更好地进行配准、特征提取、曲面重建、可视化等后续应用处理。点云数据集中每一个点表达一定的信息量,某个区域点越密集有用的信息量越大。孤立的离群点信息量较小, 阅读全文
posted @ 2019-11-28 10:17 任重道远-HSY 阅读(1108) 评论(0) 推荐(0)
 

2019年11月27日

PCL平面模型分割
摘要: #include #include #include #include #include #include #include int main(int argc, char** argv) { pcl::PointCloud cloud; //填充点云数据 cloud.width = 15; cloud.height = 1; cloud... 阅读全文
posted @ 2019-11-27 16:03 任重道远-HSY 阅读(486) 评论(0) 推荐(0)
 
PCl 点云 附加依赖项
摘要: debug 版本: release版本: 阅读全文
posted @ 2019-11-27 10:50 任重道远-HSY 阅读(435) 评论(0) 推荐(0)
 
PCL点云可视化
摘要: #include "pclf.h" #include <pcl/ModelCoefficients.h> #include <pcl/filters/voxel_grid.h> #include <pcl/filters/statistical_outlier_removal.h> #include <string> int main() { PLCSF sface; std::string pa 阅读全文
posted @ 2019-11-27 09:01 任重道远-HSY 阅读(347) 评论(0) 推荐(0)
 

2019年11月25日

C++二叉树值创建于遍历二
摘要: #include <iostream> #include <cstdlib> #include<queue> #include <stack> using namespace std; //二叉树链表的存储结构 typedef struct BiTNode { int data;//节点数据 struct BiTNode *lchild, *rchild;//左右孩子指针 }BiTNode, *B 阅读全文
posted @ 2019-11-25 15:41 任重道远-HSY 阅读(167) 评论(0) 推荐(0)
 

2019年11月23日

图像增强
摘要: Mat ImageAHE(Mat img, int block) { Mat AHE_GO = img.clone(); int width = img.cols; int height = img.rows; int width_block = width / block; //每个小格子的长和宽 阅读全文
posted @ 2019-11-23 15:13 任重道远-HSY 阅读(151) 评论(0) 推荐(0)
 
安插型迭代器
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 10 int main() 11 { 12 list coll1 = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; 13 vec... 阅读全文
posted @ 2019-11-23 14:05 任重道远-HSY 阅读(111) 评论(0) 推荐(0)
 
STL 之copy()
摘要: eg: 阅读全文
posted @ 2019-11-23 13:47 任重道远-HSY 阅读(145) 评论(0) 推荐(0)
 

2019年11月15日

C++ 二叉树的创建于遍历
摘要: 头文件(bitree.hpp) 阅读全文
posted @ 2019-11-15 16:17 任重道远-HSY 阅读(191) 评论(0) 推荐(0)
 
上一页 1 2 3 4 5 6 7 8 9 10 ··· 19 下一页