cvl-robot's diary

研究ノート メモメモ https://github.com/dotchang/

2016-05-01から1ヶ月間の記事一覧

openFrameworksの教科書

無料で公開されているそうです。ありがたいですね。 http://download.bnn.co.jp/download/beyond_interaction/BNN_BeyondInteraction.pdf 今日のイヤホン 小米のPistonの復刻版が、1moreというところからPiston Classicという名前で出ていてAmazonで3000円ぐ…

カメラ画像をofxVideoGrabberで取得してofxTurboJpegでエンコードして、ofxZMQを通してネットワーク配信するプログラムサンプル

OpenCVを使わずに、openFrameworksのアドオンだけで動くように変更しました。 ofxZmq GitHub - satoruhiga/ofxZmqofxTurboJpeg GitHub - armadillu/ofxTurboJpeg: Rough OF addon that uses turbo-jpeg lib to read and write jpegs. 2-3 times faster than …

カメラ画像をOpenCVで取得してJpegエンコードして、ZeroMQを通してネットワーク配信するプログラムサンプル(その2.受信をマルチスレッド化)

testApp.h #pragma once #include "ofMain.h" #include "opencv2/opencv.hpp" class ofxZmqSubscriber; class ofxZmqPublisher; class ThreadedSubscriber : public ofThread { public: ThreadedSubscriber(ofxZmqSubscriber* ptr) : subscriber(ptr) {}; vo…

ofxFaceTrackerで遊んでみる

(メモ)オリジナルソース github.comFaceTrackerのオリジナル論文の解説 d.hatena.ne.jpVisual Studioでのインストール時の修正 C/C++->OUTPUT Objects: $(IntDir)/%(RelativeDir)/ forum.openframeworks.cc顔の置き換え github.comマルチフェイストラッキン…

hiro_handleをpyzmq経由で呼び出せるようにする

(作業メモ) まずOpenRTM-aistをPython2.7.10環境で構築しなおします。 python2.6はサポートが終了してしまうようで、pipを使ってpyzmqをすんなりインストールすることができません。 http://www.openrtm.org/openrtm/node/5768 32bit用 Windows用インストー…