上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页

2015年10月10日

3.2 Git 分支 - 分支的新建与合并

摘要: 3.2 Git 分支 - 分支的新建与合并分支的新建与合并现在让我们来看一个简单的分支与合并的例子,实际工作中大体也会用到这样的工作流程:开发某个网站。为实现某个新的需求,创建一个分支。在这个分支上开展工作。假设此时,你突然接到一个电话说有个很严重的问题需要紧急修补,那么可以按照下面的方式处理:返回... 阅读全文

posted @ 2015-10-10 16:52 cv_ml_张欣男 阅读(207) 评论(0) 推荐(0) 编辑

2015年9月26日

【Caffe 测试】Training LeNet on MNIST with Caffe

摘要: Training LeNet on MNIST with CaffeWe will assume that you have Caffe successfully compiled. If not, please refer to theInstallation page. In this tuto... 阅读全文

posted @ 2015-09-26 01:06 cv_ml_张欣男 阅读(528) 评论(0) 推荐(0) 编辑

Caffe 编译

摘要: CompilationNow that you have the prerequisites, edit yourMakefile.configto change the paths for your setup The defaults should work, but uncomment the... 阅读全文

posted @ 2015-09-26 01:04 cv_ml_张欣男 阅读(431) 评论(0) 推荐(0) 编辑

Caffe 在 Ubuntu 中安装

摘要: Ubuntu InstallationGeneral dependenciessudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-com... 阅读全文

posted @ 2015-09-26 01:01 cv_ml_张欣男 阅读(344) 评论(0) 推荐(0) 编辑

2015年9月22日

【转】git - 简明指南

摘要: git - 简明指南助你入门 git 的简明指南,木有高深内容 ;)作者:罗杰·杜德勒感谢:@tfnico,@fhd和Namics其他语言english,deutsch,español,français,indonesian,italiano,nederlands,polski,português,... 阅读全文

posted @ 2015-09-22 14:06 cv_ml_张欣男 阅读(125) 评论(0) 推荐(0) 编辑

2015年9月21日

Using OpenCV with gcc and CMake

摘要: Using OpenCV with gcc and CMakeNoteWe assume that you have successfully installed OpenCV in your workstation.The easiest way of using OpenCV in your c... 阅读全文

posted @ 2015-09-21 13:36 cv_ml_张欣男 阅读(277) 评论(0) 推荐(0) 编辑

【转】linux下安装opencv

摘要: Installation in LinuxThese steps have been tested for Ubuntu 10.04 but should work with other distros as well.Required PackagesGCC 4.4.x or laterCMake... 阅读全文

posted @ 2015-09-21 13:35 cv_ml_张欣男 阅读(645) 评论(1) 推荐(0) 编辑

2015年9月18日

【转】shell 教程——07 Shell特殊变量:Shell $0, $#, $*, $@, $?, $$和命令行参数

摘要: 前面已经讲到,变量名只能包含数字、字母和下划线,因为某些包含其他字符的变量有特殊含义,这样的变量被称为特殊变量。例如,$ 表示当前Shell进程的ID,即pid,看下面的代码:$echo $$运行结果29949特殊变量列表变量含义$0当前脚本的文件名$n传递给脚本或函数的参数。n 是一个数字,表示第... 阅读全文

posted @ 2015-09-18 10:47 cv_ml_张欣男 阅读(181) 评论(0) 推荐(0) 编辑

【转】shell 教程——06 Shell变量:Shell变量的定义、删除变量、只读变量、变量类型

摘要: Shell支持自定义变量。定义变量定义变量时,变量名不加美元符号($),如:variableName="value"注意,变量名和等号之间不能有空格,这可能和你熟悉的所有编程语言都不一样。同时,变量名的命名须遵循如下规则:首个字符必须为字母(a-z,A-Z)。中间不能有空格,可以使用下划线(_)。不... 阅读全文

posted @ 2015-09-18 10:45 cv_ml_张欣男 阅读(210) 评论(0) 推荐(0) 编辑

【转】shell 教程——05 第一个Shell脚本

摘要: 打开文本编辑器,新建一个文件,扩展名为sh(sh代表shell),扩展名并不影响脚本执行,见名知意就好,如果你用php写shell 脚本,扩展名就用php好了。输入一些代码:#!/bin/bashecho "Hello World !" “#!” 是一个约定的标记,它告诉系统这个脚本需要什么解释器来... 阅读全文

posted @ 2015-09-18 10:42 cv_ml_张欣男 阅读(170) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页

导航