上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页
摘要: mpi变成常用命令 编译c程序 gcc 例: gcc -Wall -o my_sa my_sa.c 若要编译c++,需要连接, 加参数 gcc -Wall -o my_sa my_sa.cpp -lstdc++ 编译c++ g++ 例: g++ -Wall -o my_sa my_sa.cpp 编译 阅读全文
posted @ 2018-03-26 22:57 JarvisLau 阅读(6040) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-26 16:29 JarvisLau 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 一、mpi 来自教材《并行程序设计导论》 mpi的helloworld程序 //test3_1.c #include <stdio.h> #include <string.h> #include <mpi.h> const int MAX_STRING = 100; int main(void){ 阅读全文
posted @ 2018-03-24 09:53 JarvisLau 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 参考自廖雪峰git教程https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/ 主要记录自己常用到的几个命令 添加 提交到仓库 本地库的所有内容推送到远程库上 处理冲突 将github中的 阅读全文
posted @ 2018-03-20 18:34 JarvisLau 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 参考http://blog.csdn.net/weixinhum/article/details/77046873 最近项目需要用到人脸训练和检测的东西,选用了OpenFace进行,因而有此文。 本人主要参考了下面的这两篇博客: 《ubuntu 16.04 LTS使用开源面部识别库Openface》 阅读全文
posted @ 2018-03-20 13:35 JarvisLau 阅读(2843) 评论(0) 推荐(0) 编辑
摘要: https://www.polarxiong.com/archives/%E8%A7%A3%E5%86%B3ubuntu%E4%B8%8Bipv6%E8%BF%9E%E6%8E%A5%E4%B8%80%E6%AE%B5%E6%97%B6%E9%97%B4%E5%90%8E%E5%B0%B1netwo 阅读全文
posted @ 2018-03-15 17:27 JarvisLau 阅读(547) 评论(0) 推荐(0) 编辑
摘要: zipfile实现压缩整个目录和子目录 import os,shutil,zipfile,glob def dfs_get_zip_file(input_path,result): # files = os.listdir(input_path) for file in files: if os.p 阅读全文
posted @ 2018-02-02 18:22 JarvisLau 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 读取骨骼数据相关的多个json,拼接到一起 读取json文件,并解析到其中的数据 创建json文件: { "fontFamily": "微软雅黑", "fontSize": 12, "BaseSettings":{ "font":1, "size":2 } } 读取json文件: import js 阅读全文
posted @ 2018-01-28 10:40 JarvisLau 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 将yolo的输出结果保存到txt文件,并能够使用脚本批量处理http://blog.csdn.net/zhangxinyu11021130/article/details/76473193?locationNum=10&fps=1 阅读全文
posted @ 2017-12-14 12:46 JarvisLau 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 主要配置参考官网https://pjreddie.com/darknet/yolo/ 为了能够可视化,另安装cuda+opencv cuda版本为9.0 opencv版本为3.1.0 先安装cuda再安装opencv后可能会有版本冲突 安装完cuda以及opencv后对yolo的makefile文件 阅读全文
posted @ 2017-12-13 19:14 JarvisLau 阅读(2266) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页