Ctrl キーは、Emacs 的なキーバインド。
Windows キーは、オリジナルの Windows での Ctrl キーのように振舞う。
Windows キーと Ctrl キーを区別するために、 Ctrl キーについては mod0 という新しいモディファイアとして扱うようにして、 emacsedit.nodoka ファイルを修正して、C- となっている部分をすべて M0- に置き換えた。
/* | |
* "stackblur" | |
* originally, Mario Klingemann, [email protected] | |
* this implementation, Benjamin Yates ([email protected]) | |
* http://incubator.quasimondo.com/processing/stackblur.pde | |
* | |
* this blur routine seems to be quite popular. | |
* | |
* unfortunately, mario didn't comment anything. | |
* but, it's easy to see it's just a flavor of a two-pass |
/* | |
* GLSL HSV to RGB+A conversion. Useful for many effects and shader debugging. | |
* | |
* Copyright (c) 2012 Corey Tabaka | |
* | |
* Hue is in the range [0.0, 1.0] instead of degrees or radians. | |
* Alpha is simply passed through for convenience. | |
*/ | |
vec4 hsv_to_rgb(float h, float s, float v, float a) |
/* | |
fmod for Javascript, will work with any ECMA-262 implementation. | |
If you need a precision higher than 8, please use another implementation of fmod. | |
1.05 % 0.05 | |
=> 0.04999999999999999 | |
Math.fmod(1.05, 0.05) | |
=> 0 |
.svn | |
.hg | |
.cvs | |
# osx | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
*.app |
Object | |
+---------------------+-------------------------------------------+------------------+----+-------+------------+ | |
Magnitude Collection AbstractFunction Ref Symbol Boolean Nil | |
+--------------+ +-----------------------+ +---------+ ` \ +-----+ | |
Number Char SequenceableCollection Set Function Stream True False | |
| $. | | {} +--------+ | |
SimpleNumber ArrayedCollection Dictionary Thread PauseStream | |
| | +------+ | | | | |
Integer Float Array RawArray IdentityDictionary Routine Task | |
1 1.0 [] | | {:} |
#!/bin/sh | |
cd `dirname $0` | |
dir_addons=$(cd ../addons; pwd) # {OFRoot}/addons | |
dir_aliases=$(cd $(dirname $0); pwd) # {OFRoot}/addons-alias | |
numOfxAddon=0 | |
cd $dir_addons |
#include "ofMain.h" | |
#include "ofxCv.h" | |
const string path_0 = "prev.tif"; | |
const string path_1 = "cur.tif"; | |
class ofApp : public ofBaseApp | |
{ | |
ofVideoGrabber video; | |
ofxCv::FlowFarneback forward; |
// 前提条件 | |
// サクラVPS OS Ubuntu 14.04 | |
// 下準備 | |
$ sudo apt-get update | |
$ sudo apt-get upgrade | |
$ sudo apt-get install pkg-config | |
// linux用のoFをDLしてきて |
#pragma once | |
/* | |
USAGE: | |
ofxAutoSaveParam param; | |
class ofApp { | |
public: |