ofxMidi updates
Hi,I love this addon, but I'm trying to run it in a C++11 64bit compilation of openFrameworks and I don't know what I need to do for it to happen.As oF 0.9 introduces C++11 and 64bits I thought it'd...
View ArticleOpenframeworks 0.9.0 does not work with CLR?
I started to migrate to OF 0.9.0, but such trouble happened: C1189 #error: <mutex> is not supported when compiling with /clr or /clr:pure. (компилируется исходный файл src\main.cpp) Now OF is...
View ArticleofxMidi updates
Hi @cabral1349, I'm using this plugin right now for a project with the current github version (that shouldn't be so different from the 0.9 release). I have not had any problems with it so far but I'm...
View ArticleofParameter
It is quite straight forwads as arturo says, just put a button in the gui and listen to it.Yet, I have a doubt.@arturo, is it possible to listen to the parameter event for a function with no...
View ArticleExtending ofxGui with new widgets
Nice! I'm pulling right now.BTW, I added a very simple dropdownmenu to my ofxGuiPlus. Did you add something like it to this version?best
View ArticleText on 0.9.0 release
I had some trouble last week when I has to compile an app I made in OSX for Windows with the utf8 parsing thing. This was in spanish so I had to use áéíóú ñ. Osx and windows gave different results...
View ArticleExtending ofxGui with new widgets
@frauzufallawesome! works beautifully.yet im getting a SIGABRT when exiting.this is thrown to the console libc++abi.dylib: terminating with uncaught exception of type std::__1::system_error: mutex...
View ArticleGoal: capture sound in Pc "A" and send it by UDP protocol to PC "B" and play it
Hello all people. I need Help. I have two code, code A capture sound codified it in a string (line 66), send it via UDP protocol to Pc "B". Here have the code B, he convert the received string in a...
View ArticleNo project generator in code::blocks nightly built?
Hi everyone, I have an OS X OF project which I need to port to windows, using the standard gnu c++ compiler with 11x support. I tried to compile some examples in 8.4 with c++11x enabled, but that...
View ArticleofParameter
you can put all the parameters in an ofParameterGroup and listen to it's event which sends you the ofAbstractParameter. For next release i plan to add the possibility to add an std::function to an...
View ArticleNo project generator in code::blocks nightly built?
code block is being dropped for 0.9 you can use makefiles wihich allows you to use any IDE that supports them, codeblocks among others, i'll put a guide soon on how to use it but mostly you need to:...
View ArticleNo project generator in code::blocks nightly built?
or you can use visual studio which is the recommended IDE
View ArticleNo project generator in code::blocks nightly built?
Thanks very much, arturo! Being independent from a particular IDE would be my preferred solution, since I'm not aware what development environment my collaborator prefers. So we stay flexible. I...
View ArticleUsing toOf from ofxCv
Hi , trying to use ofxCv::toOf() to convert a cv::Mat to an ofImage I get the following error on a Rapsberry pi : Utilities.h: In function ‘void ofxCv::toOf(cv::Mat, ofImage_&) [with T = unsigned...
View ArticleofxMidi updates
Hi @roymacdonald, confirmed that it runs on current master branch on OS X10.10.3.I guess the old branch that I was using has some unupdated libraries or something. It's not that uncommon for MIDI to...
View ArticleUsing toOf from ofxCv
can you post the code that you are passing? seems that is failing to compile because you are passing unsigned char* instead of ofImage or ofPixes but it's hard to tell without seeing the code that is...
View ArticleUsing toOf from ofxCv
well actually nothing "fancy" I have a ofImage and a ofxCv::Mat in ofApp.h then in update() I do : toOf(my_Mat, My_Img); passing ofImage.getPixelsRef() doesn't throw any error but when I try to draw...
View ArticleOpenframeworks 0.9.0 does not work with CLR?
(was curious myself) en.wikipedia.org Common Language Runtime The Common Language Runtime (CLR), the virtual machine component of Microsoft's .NET framework, manages the execution of .NET programs. A...
View Article