detect()
- Detects keypoints in an image (first variant) or image set (second variant).
- http://docs.opencv.org/master/d0/d13/classcv_1_1Feature2D.html#aa4e9a7082ec61ebc108806704fbd7887&gsc.tab=0
compute()
- Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant).
- http://docs.opencv.org/master/d0/d13/classcv_1_1Feature2D.html#ab3cce8d56f4fc5e1d530b5931e1e8dc0&gsc.tab=0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Artoolkit2 < Formula | |
desc "Library for building Augmented Reality (AR) applications" | |
homepage "https://www.hitl.washington.edu/artoolkit/" | |
url "http://downloads.sourceforge.net/artoolkit/ARToolKit-2.72.1.tgz" | |
version "2.72.1" | |
sha256 "1a49a67c6e196b0e9990e90255ce840287ac47b5a53371a68a6dd93a5425d259" | |
def install | |
xcodebuild "-sdk", "macosx", "-arch", "i386" | |
- App StoreでXcode Install
- Xcode 起動
- Command Line Tools Install
- http://brew.sh/index_ja.html
- ライブラリをインストールしたり管理するツール。MacPortsとかと同じ
- ターミナルを開く
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filetype plugin indent on | |
filetype indent on | |
" Visualize | |
syntax enable | |
set cursorline | |
" Informations | |
set ruler number | |
set showcmd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function test() { | |
return new Promise(function(resolve, reject) { | |
var r = Math.random(); | |
r > 0.5 ? resolve(r) : reject(r); | |
}); | |
} | |
function throwError() { | |
return new Promise(function(resolve, reject) { | |
throw new Error("Boom!"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src/gz all http://repo.opkg.net/edison/repo/all | |
src edison http://repo.opkg.net/edison/repo/edison | |
src/gz edison-core2-32 http://repo.opkg.net/edison/repo/core2-32 |
- OFFICIAL http://isucon.net/archives/40724693.html
- http://blog.hktechno.net/2014/09/isucon4-big-1.html
- http://d.tpdn.kim/2014/11/08/isucon4-bigdon
- http://blog.nomadscafe.jp/2014/11/isucon4-isucon.html
- 生ハム原木
- http://www.slideshare.net/kazeburo/isucon-summerclass2014action1?related=1
- 夏期講習概要編
- http://www.slideshare.net/kazeburo/isucon-summerclass2014action2final
- 夏期講習実践編
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
set encoding=utf-8 | |
set hidden | |
filetype plugin indent on | |
syntax on | |
set synmaxcol=2048 " Don't syntax highlight super-long lines (for performance) | |
set autoindent " automatically indent lines and try to do it intelligently | |
set smartindent | |
set backspace=indent,eol,start " backspace behaves 'normally' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Jack { | |
PGraphics g_local, g_global; | |
Jack() { | |
g_local = createGraphics(width, height, P3D); | |
} | |
void begin() { | |
g_local.beginDraw(); | |
g_global = g; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Jack { | |
PGraphics g_local, g_global; | |
Jack() { | |
g_local = createGraphics(width, height); | |
} | |
void begin() { | |
g_local.beginDraw(); | |
g_global = g; |