[SOLVED] ofxGui : update gui when value change?
This doesn't work for me. Code: parameters.add(waveOrigin.set("wave origin", ofVec2f(-0.5f, 0.0f), ofVec2f(-0.5f, -0.5f), ofVec2f(0.5f, 0.5f))); waveOrigin.addListener(this,...
View ArticleMultichanel Sound playing in external usb sound card
Ive made it using OfxMultisoundplayer !!!!! I just need to update my drivers from my soundboard.
View ArticleHow to make a soundboard be multichannel using FMOD?
Ive made it using OfxMultisoundplayer !!!!! Drivers update and it was working !
View ArticleUsing right or left in stereo exits
Well im using ofxmultispeakersoundplayer to make a multichannel exits. Some of those are stereo. All that I need now is to make the sound came out for left or for right. Do you have any Idea how can I...
View ArticleUsing right or left in stereo exits
Im trying the example of AudioOutput but aint working. I dont know why
View ArticleWich kinect is best for Openframeworks?
if you are running osx or linux, you have to buy an older model of the xbox 360 kinect. The newer models and kinect for windows has firmware updates that prevents communications from being opened...
View ArticleSharing variables between classes
as a general rule you don't want to be directly accessing and changing variables of your classes anyways. You should make getter/setter functions like getRadius() and setRadius(float r) instead....
View ArticleSharing variables between classes
Hello, I am no expert in C++ either so i may be wrong, but i would also go for getters / setters and pass variables by reference when dealing with large properties when needed. I also sometimes use...
View ArticleWich kinect is best for Openframeworks?
just a tip , buy your kinects v1 on amazon and "pawn shop" they are cheap but look for the one wich has usb cord.
View ArticleWich kinect is best for Openframeworks?
I cannot buy anything in amazon, I live in argentina. Argentina has very stricted policies about imports. So. . . ill see what I can get. I have 2 pcs, one with linux and other with windows. Ill get...
View ArticleMultichanel Sound playing in external usb sound card
Ok. Here is what you asked for:https://github.com/bernardgeyer/ofxFmodSoundPlayer2 please tell me how it works on your computer.
View ArticleBest way to draw an array of objects
Ok.So i made a version of my app using ofMesh and ofVboMesh.Seems to work but is quite twice as heavier in CPU ressources as the previous version !Activity monitoring shows 67% CPU usage where i used...
View ArticleBest way to draw an array of objects
are you compiling in release? i'm getting 7% cpu usage in your master branch and 6% in the vbo one. ofVboMesh uses std::vector internally to store the geometry which tend to be slow in debug
View ArticleBest way to draw an array of objects
also in the shape class the update method doesn't really need to be called every frame since it's doing always the same. you can move that code to setup. the colors also don't change so instead of...
View ArticleBest way to draw an array of objects
yes both are running in release. master springBounce.png2658x1654 913 KB vbo branch vbo.png2554x1644 675 KB Also in the shape class, what is the need to add vertex into the polyline ? isn't it...
View ArticleBest way to draw an array of objects
yes, you could remove the intermediate mesh it's just to make simpler the update method also you can create any shape without the main app having to know in which order to add the points. try removing...
View ArticleBest way to draw an array of objects
arturo : also you can create any shape without the main app having to know in which order to add the points. What do you mean here ? Yes i am going to modify it as you suggest and see what are the...
View ArticleBest way to draw an array of objects
Ok, i have made some changes and now it is much better. Around 26% CPU usage, but without adding color changes and OSC receiver like in master branch. Also (correct me if i am wrong) i don't think i...
View ArticleOpencv face detection on IR video
What IR camera are you using? I tried Kinect1 IR image with ofxFaceTracker, but the resolution is bad (not the pixel resolution but wide-angle lens makes everything appear small, so you have to be...
View ArticleNeed some help with compiling> difference keying demo
The best way to include an addon is to use projectGenerator, which is included in the recent release versions of oF (you can find it directly under the extracted folder. If not, download the latest...
View Article