Speeding up builds with pre-compiled prefix headers
Got this working in Visual Studio also For a 2 file (main.cpp, ofApp.cpp) project with 1 line of code in drawVS2015 / Xeon 6-core / x64 / Debg build: Using PCH: 1> 283 ms ClCompile 1 calls1>...
View ArticleLoad wav file into ofSoundBuffer
by obscure i mean it's only got a small handful of stars/forks on GitHub(which suggests not a lot of people are using it yet compared to how handy and well worked out it is)
View ArticleOF 0.9.0, can't compile examples on Pi2
OF Compiled fine after upping my CPU memory but when I try to compile any of the examples I'm getting errors....
View ArticleCircular texture
Hey @julapy, Looks awesome.Trying to accomplish something similar, do you still have the source code for this?
View ArticleSystem() starting and killing a process within a thread
Hi everybody, I was wondering how I can kill a process started with system(cmd) within a thread. For example I start a new process (another c++ program fi) from a thread like this: class SystemThread:...
View ArticleWorkshop code examples // webcam and Kinect stuff
Hey Moru, The examples should work with the old Kinect (xbox360). I have no idea which versions exactly.Check this rep to get the Kinect working .https://github.com/wearenocomputer/ofxOpenNI_NC
View ArticleSystem() starting and killing a process within a thread
HI, under unix-based systems you can use the kill command,This allows you to kill a running process, the most common form is: kill -9 (job number) you can retrieve the PID of the process in this way:...
View ArticleofSerial "buildDeviceList()" Linux i386/amd64
Good morning guys, I have a question about ofSerial. I noticed that when I call the methods: listDevices();orgetDeviceList(); (These two functions use the internal method buildDeviceList()) I...
View Article[SOLVED]Linux Kinect 1473 on OF9
io there,I have 2 kinects, one 1414 and a 1473.the first one works like a charm but the second on is not working here is the log: [verbose] ofxKinect: context inited[verbose] ofxKinect: 1 device...
View Article[SOLVED]Linux Kinect 1473 on OF9
if I'm not mistaken you can solve this by commenting: // #define BUILD_AUDIO in the file:addons/ofxKinect/libs/libfreenect/include/libfreenect.h CiaoDario
View ArticleSystem() starting and killing a process within a thread
There may be an easier way but I would probably try writing a script that either exits/kills itself once it is finished write 2 scripts, one that starts the process and one that you call on the thread...
View ArticleSystem() starting and killing a process within a thread
Hi Dario, Jason, Thanks for the input.!I guess for me the best way to handle this situation is the second option that you gave Jason. use a script that opens the proces: system("myprocess") in a...
View ArticleofVideoPlayer and ofDisableArbTex()
I'm updating an old project to OF 0.9.0 and noticed that I can't get my ofVideoPlayer to render with ofDisableArbTex() turned on. I'm just seeing a white rect instead of my video texture. I did a...
View ArticleofxGranularSynth- Audio Synthesizer in openFrameworks
Looks amazing ! Very nice job @luds !! I'm trying to test it with OF 09 and Xcode 7.01 ... and i'm getting some errors ...I've tried to fix it but i can't ... Any tips ? This is the error ...
View ArticleofxDatGui: A New User Interface for OF
arturo: ofParameter is thought to be a way to separate data from presentation in the code which gives independence from the different gui systems in OF, if everyone uses it people will be able to...
View ArticleofxDatGui: A New User Interface for OF
Also to anyone else interested in ofParameter integration with ofxDatGui I added an example this morning on the dev branch that demonstrates sharing three ofParameters with a gui and a separate group...
View ArticleofxDatGui: A New User Interface for OF
braitsch: I'm not super happy with the implementation yet as I haven't figured out how to rewrite the ofxDatGuiSlider constructor to take a generic ofParameter object and bind an event handler to it...
View ArticleofxDatGui: A New User Interface for OF
Well right now I have a unique listener in each constructor for the specific data type that's passed in (currently just float and int). I'd ideally like to have just one generic listener function and...
View ArticleofxDatGui: A New User Interface for OF
Basically I want to get rid of mParamInt & mParamFloat and just have one mParam pointer to the ofParameter reference that is passed, but the problem is ofAbstractParameter doesn't implement an...
View Article