上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 路径及文件操作 创建目录 列出当前文件夹中文件,存入string list中 判断路径是否存在 判断路径对应的位置是文件吗? 路径拼接 获取当前文件夹路径 change pwd to path remove directory and its contents, delete all files i 阅读全文
posted @ 2017-03-06 20:13 fariver 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 视频或相机中读入的帧数不对,或有空帧 image check from cap or video: you must check wether each frame is not empty when use VideoCapture. Like : +0 这个bug你早晚会碰到的 Python O 阅读全文
posted @ 2017-03-06 19:53 fariver 阅读(5599) 评论(0) 推荐(1) 编辑
摘要: 画多边形 fillConvexPloy与fillConvexPloy的区别 fillConvexPloy 用来画单个凸多边形: 如果点集的连线不是凹多边形,则会找一个最小的凸多边形把该凹多边形包住画出 因为只能画单个多边形,所以其点集的接口为一个np.array([x1,y1],[x2,y2])的形 阅读全文
posted @ 2017-03-06 19:45 fariver 阅读(532) 评论(0) 推荐(0) 编辑
摘要: Python usage crop frame: resize frame: read video: 初始化 读取方式: read_mode: cv2.CV_CAP_RPOP_POS_MSEC: 按秒 cv2.CV_CAP_PROP_POSE_FRAMES: 按帧数,从0开始 阅读全文
posted @ 2017-03-04 18:54 fariver 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: 像素遍历 对单通道图像的遍历处理 对三通道图像的遍历处理 那么问题就来了,我如何知道矩阵是几个通道,里面的元素是如何存储的呢? 通过Mat::tpye()可以查到一个整数,根据这个整数查表可以确定到底是什么类型,再查表可以知道如何通过at来访问,详情参见 "博客" 生成鸟瞰图 "get_ipm.cp 阅读全文
posted @ 2017-03-04 18:50 fariver 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 常用操作 imread 第二个参数,int类型的flags,为载入标识,它指定一个加载图像的颜色类型。可以看到它自带缺省值1. flags 0返回一个3通道的彩色图像。 flags =0返回灰度图像。 flags 阅读全文
posted @ 2017-03-04 18:47 fariver 阅读(509) 评论(0) 推荐(0) 编辑
摘要: #linux安装 ##安装 opencv 3.0 下载安装包,安装过程主要参见 unzip /usr/local/src下 cd /usr/local/src/opencv3.0/ mkdir build cd build cmake -D CMAKE_INSTALL_PREFIX=/usr/loc 阅读全文
posted @ 2017-03-04 18:36 fariver 阅读(1744) 评论(0) 推荐(0) 编辑
摘要: matlab R2015b在ubuntu 14.04环境下的安装 挂载及运行安装程序 active program without conect to intenet and choose “ license_standalone.lic” in the crack_dir error2:canno 阅读全文
posted @ 2017-03-04 11:51 fariver 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: 实用命令 打点测时 Image 翻转 find non zero elem index read multifile in certain directory Write and read .txt file save and load .mat Repmat std2 阅读全文
posted @ 2017-03-04 11:38 fariver 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 基本命令 delete certain col in mtrix reshape array 矩阵连接 convert num to string convert a cell struct to mat type %%注意:subs是一个cell型数据,其每个元素是cell型的,只能display 阅读全文
posted @ 2017-03-04 11:28 fariver 阅读(816) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页