会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Libra
岁月腐蚀了曾经的青春,留下温顺苍老的影子。
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
14
15
16
17
18
19
20
21
22
···
41
下一页
2020年10月29日
函数指针
摘要: 用途: 函数指针通常用来实现回调,也可以用来对模块调用以函数表的形式进行优化。 使用方法: 1、定义函数指针类型 使用typedef更直观更方便 // 定义一个原型为int Fun( int a );的函数指针 typedef int (*PTRFUN) ( int aPara ); typedef
阅读全文
posted @ 2020-10-29 10:44 玥茹苟
阅读(144)
评论(0)
推荐(0)
2020年10月28日
opencv 图像通道操作
摘要: 分割 vector<Mat> channels; split(image1, channels);//分割image1的通道 split(imageROI2, channels); Mat channels1 = channels[0];//获取通道1 Mat channels2 = channel
阅读全文
posted @ 2020-10-28 09:57 玥茹苟
阅读(538)
评论(0)
推荐(0)
三维点云匹配算法
摘要: 1、ICP 2、 Superpose3D https://github.com/jewettaij/superpose3d_cpp 3、TEASER++ https://teaser.readthedocs.io/en/latest/installation.html#installing-depe
阅读全文
posted @ 2020-10-28 09:39 玥茹苟
阅读(1000)
评论(0)
推荐(0)
2020年10月27日
点与三角形位置关系
摘要: https://blackpawn.com/texts/pointinpoly/default.html
阅读全文
posted @ 2020-10-27 09:46 玥茹苟
阅读(259)
评论(0)
推荐(0)
2020年10月19日
室内场景mesh 的自动分块---用于加载显示,参数化等
摘要: 1. 思路与流程 a、 估计x, y, z,的尺度,计算分割格子尺度,以及分割块数量; b、遍历三角面,估计三角面与每个格子之间的关系;(如果三角形的两个点在格子里,则在格子里面) c、优化格子数据,对于一些格子内三角形数小于 num_threshold,则合并到前一个格子里面。 d、划分格子数据保
阅读全文
posted @ 2020-10-19 12:10 玥茹苟
阅读(312)
评论(0)
推荐(0)
2020年10月15日
eigen 四元数
摘要: Eigen中四元数Quaterniond的初始 Eigen::Quaterniond q1(w, x, y, z);// 第一种方式 Eigen::Quaterniond q2(Vector4d(x, y, z, w));// 第二种方式 Eigen::Quaterniond q2(Matrix3d
阅读全文
posted @ 2020-10-15 15:19 玥茹苟
阅读(2221)
评论(0)
推荐(0)
2020年9月29日
string 、char*、const char *
摘要: string 、char*、const char * 1.string to char* 方式1 std::string str = "string"; char* chr = const_cast<char*>(str.c_str()) 方式2 string str = "some string"
阅读全文
posted @ 2020-09-29 18:03 玥茹苟
阅读(225)
评论(0)
推荐(0)
2020年9月14日
ros topic
摘要: #查看topic频率rostopic hz /xxx_imu_driver/imu #查看topic信息rostopic info /xxx_imu_driver/imu #查看topic数据rostopic echo /xxx_imu_driver/imu
阅读全文
posted @ 2020-09-14 17:45 玥茹苟
阅读(181)
评论(0)
推荐(0)
2020年9月9日
ubuntu 常用命令
摘要: 1、查看已安装软件版本aptitude show softwarename 2、查看软件安装目录dpkg -L softwarename 3、查找文件 find ./ -name '?.txt' find ./ -name '*.txt' 4、APT-GET apt-get update——在修改/
阅读全文
posted @ 2020-09-09 17:42 玥茹苟
阅读(142)
评论(0)
推荐(0)
2020年9月3日
相机模型1
摘要: 参考: https://blog.csdn.net/u011178262/article/details/74159480#_144 https://blog.csdn.net/weixin_43206570/article/details/84797361
阅读全文
posted @ 2020-09-03 17:13 玥茹苟
阅读(109)
评论(0)
推荐(0)
上一页
1
···
14
15
16
17
18
19
20
21
22
···
41
下一页
公告