Does anyone has used openFrameworks with Orange Pi?
Orange PiHi, I've seen there's some kind of Raspberry Pi clone with a AllWinner H3 Cortex-A7 @ 1.6GHz.They use the same Raspberry Pi image, so I think it should be compatible with openFrameworks for...
View ArticleBest way to draw an array of objects
yes you are right, i didn't try to draw the mesh right after tesselatation. the next step is for (int i = 0; i < mesh.getVertices().size(); i++) { vboMesh.addVertex(mesh.getVertex(i) + pos); }...
View ArticleHow to enable point smoothing
Hi, As far as I know point smoothing is hardware dependent, your card may or may not implement round points when using GL_POINT_SMOOTH. If the calls above don't work (and there isn't something missing...
View ArticlePanorama stitching via openCv
Nice! Any idea what it would do with 3 cameras of 170º in a 360º setup?
View ArticleofxKinect: differentiating between people and environmet
Hello@Kj1I tried this add on, I noticed an error in it, and I often get errors at runtime even if I use it the most simple way as possible. did it worked for you ?
View ArticlePanorama stitching via openCv
good question. not sure. but i uploaded an other OF project that loads images and stitches them.it only uses two images but it's easy to expand the code to use more....
View ArticlePanorama stitching via openCv
I'll have a look at it when I have the cams at my disposal, but they are stuck in an installation right now. I forgot to mention that the stitching would need to be done realtime...probably that's a...
View ArticlePanorama stitching via openCv
to clarify.i now have two separate examples up one uses 2 video feeds the other loads images/photos from the hard drive. you should be able to do some tests without having your cams. yes, the frame...
View ArticleQuestion about fullscreen in ofx and screencapture
I am building an installation that requires an ofx application running, and a background application that is doing an screencapture of the ofx app. All works like a charm until the application uses...
View ArticleofxKinect: differentiating between people and environmet
nope, still haven't used it and also not planning to anymore..
View ArticleDual/"universal" OF app (e.g. Linux OpenGL + Android)?
Say, I have an app where I'd decide to draw the entire UI in OpenGL. Then: Is it in principle possible to have this application build from the same codebase for both, say, Linux (as an OpenGL...
View ArticleDoes anyone has used openFrameworks with Orange Pi?
Theoretically oF should be able to run on this, though I don't know if anyone has tried it. If I were going to try it, I'd start with the 0.9.0 release of oF using the generic armv7 config and see if...
View ArticleSimply setting project or stage dimensions
Ok, gone thru the intro tutorials, have done a search, but I need to 1. set up a custom project size (1920x1080) and also 2. optionally set the project to fullscreen. Here's a related...
View ArticleSimply setting project or stage dimensions
Hi, If you look at main.cpp you'll have the option to set an initial size, launch straight into fullscreen, etc. To onKeyPressed I usually add a: if( key == 'f' ) { ofToggleFullscreen(); } to toggle...
View ArticleSimply setting project or stage dimensions
You can set your initial values of the screen size in the main.cpp file. e.g. #include "ofApp.h" int main() { ofSetupOpenGL(1920, 1080, OF_WINDOW); // Not full screen ofRunApp(new ofApp()); } #include...
View ArticleSimply setting project or stage dimensions
Other helpful functions for window size and position manipulation: http://openframeworks.cc/documentation/application/ofAppRunner.html
View ArticleExamples show black screen
I'm using Linux Mint 17.2 and I installed dependencies using the instructions provided in the tutorials (i.e., using install_dependencies.sh in the scripts directory). For example, I compiled the...
View ArticleFunded Residency Opportunity - Spring '16
I run an artist residency program called Laboratory, located in Spokane, Washington, USA, and I'm looking for artists interested in interactive art to come out and make awesome stuff. Laboratory's...
View ArticleMultichanel Sound playing in external usb sound card
So. .. there is no way to used this addon on ubuntu?
View Article