Spatializing Monophonic Signals with ofxHOA
@cabral1349 Thanks so much for your help. I understand so much more now. Any chance you'd be able to show a binaural example of multiple 3D sources? I'm having issues with binaural on the current 3D...
View ArticleWhy 0.9 only support vs2015?
If you desperately need VS 2012 support, for instance if you need to use a library that is super hard to compile for VS 2015 (like me!) then you can always develop against a previous point in the...
View ArticleUnable to pause activity: pure data (ofxpd) on android
Hi, I am developing an android application with ofxpd. My current problem is that when I change something in the pd patch, the app behaviour does not change, it behaves as before the changes. To...
View ArticleExamples show black screen
Hi, same problem here . Did you manage to run an examples ? E
View ArticleNew addon: ofxDepthCamera
Hi MattGreat work, I have been thinking for a long time how nice it would be to have a common framework, so as you say exchange is quickly.I am just trying to hook the Kinect V2 up to an older porject...
View ArticleSpatializing Monophonic Signals with ofxHOA
I don't know if I'll have the time to do an example anytime soon, but here are a few considerations: It will work like the Binaural 2D example, but you should have a Decoder::Binaural<Hoa3d,...
View ArticleHow to run examples from ofxFaceTracker?
Hi, This is my first post on OF, also I don't have any C++ experience so my answer can be wrong. Anyway.... In every example folder there's an addons.make file, it contains the addons needed for the...
View ArticleNew addon: ofxDepthCamera
Hi Jonas. I haven't written one yet, but it's on my todo list. You could try making one - they're pretty straightforward, and you can look at the existing ones for a starting point. For...
View ArticleHow to stream audio from online player?
Hi everyone, I'm attempting to get the audio from this online police scanner into OF but I don't know where to begin! I don't need to do anything fancy with it, just need to stream it from within the...
View ArticleEmbedding HTML5 Content
Any experience / comments / pointers on OF addon rendering HTML5 on Raspberry PI 2 hardware ? Thanks.
View ArticleHow to run examples from ofxFaceTracker?
thanks @alecule that response is exactly correct
View Article[SOLVED] Visual Studio 2015 Project Generator
I had the same problem. Installing common tools solved it.Thank you!
View Article[NYC WORKSHOPS] OF COURSE Spring 2015
Hey sad to have missed this. Do you plan on anything for the winter period in BK ? Thanks DC
View ArticleUsing OF Function in a Function
Hello, I am trying to write a distance function that will compute the distance between a (x,y) coordinate and the mouse coordinates. But when I call mouseX or mouseY from within the function that I am...
View ArticleUsing OF Function in a Function
May it be float ofApp::distance(int n,int valX, int valY) instead of float distance(int n,int valX, int valY)
View ArticleUsing OF Function in a Function
you can also do ofGetMouseX() / ofGetMouseY() from anywhere to access the mouseX and mouseY values. (They are members of ofApp and not accessible elsewhere in your code).
View ArticleUsing OF Function in a Function
If I did this how would I call it in the draw section for instance?
View ArticleUsing OF Function in a Function
Just like any regular call void ofApp::draw() { float dist = distance(n, valx, valy); } float ofApp::distance(int n,int valX, int valY){ float d; d =...
View Article