沃特门勒

导航

 

2024年2月19日

摘要: 效果如下: 根据轮廓面积筛除了大轮廓和很小的轮廓,大家可以用其它方法实现自己想要的效果 #include <iostream> #include <opencv2/opencv.hpp> #include <vector> #include <string> using namespace cv; 阅读全文
posted @ 2024-02-19 11:33 沃特门勒 阅读(11) 评论(0) 推荐(0) 编辑
 

2023年12月13日

摘要: 参考文章: https://blog.csdn.net/hpf247/article/details/120032695 规范提交格式,提高团队协同工作效率 阅读全文
posted @ 2023-12-13 16:52 沃特门勒 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: 谷歌代码规范链接: https://zh-google-styleguide.readthedocs.io/en/latest/google-cpp-styleguide/ 代码规范工具—cpplint: 1)在Vscode中搜索并安装插件 cpplint 2)接着打开终端,输入 sudo pip 阅读全文
posted @ 2023-12-13 15:19 沃特门勒 阅读(74) 评论(0) 推荐(0) 编辑
 
摘要: 参考资料:https://blog.csdn.net/hjk_1223/article/details/125708035 可以应用在地下车库等场景 阅读全文
posted @ 2023-12-13 14:42 沃特门勒 阅读(5) 评论(0) 推荐(0) 编辑
 
摘要: 在做路径规划时,通常把三轮或者四轮阿克曼车简化为两轮自行车模型以计算转弯半径R 图中Lb是轴距,ICC是瞬时转弯中心,图中的α 1和α2是前轮实际转角,α是等效的前轮转角,φ 是航向角 在上述自行车模型中,由前轮+后轮+瞬时转弯中心构成一个三角形 已知轴距Lb,黄色圆弧所示的角度为 等效的前轮转角α 阅读全文
posted @ 2023-12-13 14:23 沃特门勒 阅读(192) 评论(0) 推荐(0) 编辑
 
摘要: 参考文章:https://blog.csdn.net/qq_36666115/article/details/131015894 1)安装开发者工具 我们需要工具从其源代码构建 Boost 库,这里是获取所需库的命令: sudo apt-get install build-essential g++ 阅读全文
posted @ 2023-12-13 14:08 沃特门勒 阅读(59) 评论(0) 推荐(0) 编辑
 
摘要: 参考文章:https://blog.csdn.net/qq_45529538/article/details/131311097 1)下载源码 https://github.com/ipa320/ipa_coverage_planning 2)安装依赖 sudo apt install ros-no 阅读全文
posted @ 2023-12-13 12:02 沃特门勒 阅读(73) 评论(0) 推荐(0) 编辑
 

2023年11月24日

摘要: #include <iostream> #include <map> using namespace std; int main() { std::map<int, std::string> myMap = {{1, "one"}, {2, "two"}, {3, "three"}}; auto i 阅读全文
posted @ 2023-11-24 15:06 沃特门勒 阅读(15) 评论(0) 推荐(0) 编辑
 

2023年11月21日

摘要: 1) threshold函数 —— 用于对图像做二值化处理 例: cv::threshold(in_map, out_map, 200, 255, cv::THRESH_BINARY); // 参数含义: 输入图像、输出图像、设定的阈值大小、最大灰度值、阈值类型(多种) 2)erode函数 —— 用 阅读全文
posted @ 2023-11-21 16:22 沃特门勒 阅读(19) 评论(0) 推荐(0) 编辑
 

2021年10月18日

摘要: 奥特学园教学视频 https://www.bilibili.com/video/BV1Ci4y1L7ZZ?from=search&seid=14072611336048392333 奥特学园配套文档 http://www.autolabor.com.cn/book/ROSTutorials/ 阅读全文
posted @ 2021-10-18 17:06 沃特门勒 阅读(27) 评论(0) 推荐(0) 编辑