Skip to content

Instantly share code, notes, and snippets.

@kidapu
Last active January 25, 2016 10:53
Show Gist options
  • Save kidapu/2292ca6f214bc526f56a to your computer and use it in GitHub Desktop.
Save kidapu/2292ca6f214bc526f56a to your computer and use it in GitHub Desktop.
openframworks_hamatta.txt
// ofTexureからofImageの変換
ofTexture tex = xxx.getTextureReference();
ofPixels p;
tex.readToPixels(p);
ofImage img;
//img.setFromPixels(p, tex.getWidth(), tex.getHeight(), OF_IMAGE_COLOR_ALPHA);
img.setFromPixels(p);
Library Search Pathに以下を追加。
../../../addons/ofxMultiKinectV2/libs/libusb/lib/osx
../../../addons/ofxTurboJpeg/libs/turbo-jpeg/lib/osx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment