摘要: 转载自: https://blog.csdn.net/qq_39038178/article/details/125561589 阅读全文
posted @ 2024-05-17 11:50 LiangXin_Alex 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 本博客笔记均来自B站up主GeekHour的【GeekHour】一小时Git教程下方为传送门: 【GeekHour】一小时Git教程 急于查看命令直接看这部分,想对命令有更深一步理解见后文: Git所有学习到的命令集合 /**Git版本查看、用户配置命令:**/ //查看git版本 git -v / 阅读全文
posted @ 2024-04-18 12:57 LiangXin_Alex 阅读(100) 评论(0) 推荐(0) 编辑
摘要: ### 添加 Clion 桌面快捷方式 [传送门](https://blog.csdn.net/qq_42554780/article/details/104240748 "传送门") ### 安装terminator 并在右键菜单中添加open in termintor [传送门](https:/ 阅读全文
posted @ 2023-08-09 17:07 LiangXin_Alex 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 刚配好Ubuntu18.04双系统建议安装顺序: Eigen3.4.0--> VTK7.1.0--> PCL1.8.0--> Opencv3.4.16、Opencv-contrib3.4.15--> Ceres-solve--> Sophus--> Pangolin0.6--> g2o Eigen3 阅读全文
posted @ 2023-08-09 16:59 LiangXin_Alex 阅读(661) 评论(0) 推荐(0) 编辑
摘要: 1 安装conda后取消命令行前出现的base,取消每次启动自动激活conda的基础环境。 (1) 通过将auto_activate_base参数设置为false实现: conda config --set auto_activate_base false (2)那要进入的话通过conda acti 阅读全文
posted @ 2023-06-12 21:35 LiangXin_Alex 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 1 语法特性介绍 基本语法格式——指令(参数1 参数2) 参数使用括弧括起来; 参数之间使用空格或者分号隔开; set(HELLO hello.cpp) add_executable(hello main.cpp hello.cpp) ADD_EXECUTABLE(hello main.cpp ${ 阅读全文
posted @ 2023-05-06 22:07 LiangXin_Alex 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1.求[a,b]范围内的随机数: (int)(Math.random() * (b - a + 1)) + a; 阅读全文
posted @ 2023-04-08 11:59 LiangXin_Alex 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Ubuntu18.04安装EVO:(推荐使用源码安装方式) https://blog.csdn.net/weixin_68647501/article/details/128858007 EVO的简单使用: 用来简单了解EVO的使用—— https://blog.csdn.net/u01134185 阅读全文
posted @ 2023-02-15 21:13 LiangXin_Alex 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 首先在本地新建一个文件夹如test,进入文件夹,然后鼠标点击右键选Git Bash Here 进入git命令窗,进行git本地仓库初始化: git init 连接远程仓库: git remote add origin url 其中url为Gitee或GitHub的仓库https地址 打开sparse 阅读全文
posted @ 2023-02-15 21:06 LiangXin_Alex 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 首行缩进 &ensp; 半角的空格 &emsp; 全角的空格 需要首行缩进两个字符的话,连续使用以上任意一个两次即可。 文本加粗 <b>你好</b> 文本加粗&&居中&&用黑体 <center><font face="黑体"><b>图x-x xxxx </b></font></center> 图片居 阅读全文
posted @ 2022-10-30 00:47 LiangXin_Alex 阅读(46) 评论(0) 推荐(0) 编辑