赞了文章2021-01-29
[链接][链接][链接]笔记Shell 脚本特殊变量$0 - 脚本名$1 到 $9 - 脚本的参数。 $1 是第一个参数,依此类推。$@ - 所有参数$# - 参数个数$? - 前一个命令的返回值$$ - 当前脚本的进程识别码!! - 完整的上一条命令,包括参数。常见应用:当你因为权限不足执行命令失败...
赞了文章2021-01-27
本以为 cat < hello.txt 会报错 cat: hello: No such file or directory。猜想正确工作的原因是“参数”和“输入”的区别(未经验证或查找资料):cat 程序将输入打印在屏幕上,cat hello.txt 中的 hello.txt 是参数,将该文件的内容作为输入;而 cat < hello.txt ...
赞了文章2020-02-19
title: Manualdate: 2017-09-05 15:11:08updated: 2017-09-05 15:11:08tags:
赞了文章2020-02-16
博客有第三方平台,也可以自建,比较早的有博客园、CSDN,近几年新兴的也比较多诸如:WordPress、segmentFault、简书、掘金、知乎专栏、Github Page 等等。
发布了文章2020-02-02
大纲 example of machine learning Predicting how a viewer will rate a movie Movie rating - a solution spectrum 范围The essece of machine learning: A pattern exists We cannot pin it down mathematially. We have data on it. The learning approah Compon...
发布了文章2020-01-15
vectors,matrices,simple geometric concepts like points, rectangles,sizes
发布了文章2020-01-14
FPS 每秒帧数背景消除建模 BSMBackground SUbtractionBS算法 图像分割(GMM-高斯混合模型) 机器学习(KNN-K临近) {代码...} 一般应用于背景静止状态 基于颜色的对象跟踪 颜色范围过滤 标注与测量 颜色过滤 inRange过滤 形态学操作提取 轮廓查找 外界矩形获取 位置标定 ...
发布了文章2020-01-12
然后就可以运行了,上面贴出的网页博主只设置了debug,因为我的代码是按照learning OpenCV3中来的,里面加载图片是在命令框中进行的,如果是在window下,还要再设置一下release,和配debug过程一样的。找到有exe文件的对应文件夹,执行
发布了文章2020-01-10
CONDITIONAL STATEMENTS if {代码...} If...Else {代码...} Comparison Operators {代码...} Logical Operators theandoperator (&&) theoroperator (||) the notoperator, otherwise known as the_bang_operator (!) {代码...} Truthy and Falsy 考虑non-bo...
发布了文章2019-12-23
This OpenCV tutorial is for beginners just getting started learning the basics. Inside this guide, you’ll learn basic image processing operations using the OpenCV library using Python.为初学者提供参考将了解:
发布了文章2019-12-22
所以,启动ros,首先启动master在命令行输入roscore会启动master,同时也会启动rosout和parameter server
发布了文章2019-12-22
catkin 为ros定制的编译构建系统,对cmake的扩展catkin workplace组织和管理功能包的文件夹,以catkin为工具编译catkin workplace需要用指令来创建
发布了文章2019-12-22
Now we will add a library to our project. This library will contain our own implementation for computing the square root of a number.The executable can then use this library instead of the standard square root function provided by the compiler.让...
发布了文章2019-12-21
Contents CMake 使用说明 基础 (第一步) 添加版本号和配置头文件 指定(使用的)c++标准 Build and Test Adding a Library 添加库 (第二步) Adding Usage Requirements for Library 添加库的使用需求 (第三步) Installing and Testing 安装&测试(第四步) Install...
赞了文章2019-12-21
所谓动态图片指的是接口返回的图片地址,这里的地址指的是本地的图片地址,而非网络图片的url。 本地有一个 image 文件夹,存放需要用到的图片。按照接口返回的图片地址比对去加载。 webpack加载图片首先想到的是 file-loader 或者 url-loader
赞了文章2019-12-01
Hadoop 2.x.y(伪分布式) 参考官网对应版本的文档的 single node setup 部分[链接] 首先要有 ssh 和 rsync 然后下载 bin 包并解压,把解压的根目录添加为环境变量 HADOOP_HOME {代码...} 修改 HADOOP_HOME/etc/hadoop/hadoop-env.sh {代码...} 修改 HADOOP_HOME/etc...
赞了文章2019-08-20
这是一个机器学习的系列,偏数据分析方向,未来或许会写一些偏人工智能方向的机器学习的文章。这个系列将会详细介绍常用的机器学习模型和算法,像是线性回归和分类算法。最后会介绍机器学习方向合适的一些可视化工具。