Can anyone recommend a good video recorder for Windows?
I just tried your changes and I managed to make it work. I had to modify the code a bit to be able to compile it on my end. Also, the code as it is (from your fork) doesn't work on OS X (at least on...
View ArticleKinect measure object (get dimensions)
Hello, do you have source code available? Working on a similar project and have made some headway. Might be able to offer some suggestions... -K
View ArticleopenFrameworks 0.9 + QtCreator
Hello, I just installed OpenFrameworks (from GIT), msys2 and QtCreator on Windows 10 x64. Windows10 updated to the newest build yesterday.I followed: http://openframeworks.cc/setup/msys2/ and...
View ArticleCan anyone recommend a good video recorder for Windows?
can you tell me what you modified in order to get it to work. I was going to look through your fork but you essentially duplicated everything and I don't want to go through to look since a simple...
View ArticleHow can I combine Ofmesh with Ofvideograbber?
Thanks ! Ive done it. The only problem is that my computer seems to be on fire everytime I ran the app, so to continue in that path i would rather wait to have a better computer.
View ArticleGetting started with Kinect2 + ofx + win10
Hi Jesper, Elliot Woods' addon is a great place to starthttps://github.com/elliotwoods/ofxKinectForWindows2 You can also do a client / server setup to send Kinect data to over OSC to an OF...
View ArticleMulti dimension arrays
I just started working with pictures a little bit and you can see in my code somewhat what I am trying to do but I have commented it out to try a much simpler thing and my code still crashes. Can...
View ArticleSending OSC over SLIP
It sounds like you might be sending more data than you have the ability to read, and you're flooding the buffer. Remember that you're dealing with two computers of vastly different power. Maybe check...
View ArticleDynamic buttons
arturo: void testApp::buttonPressed(const void * sender){ ofxButton * button = (ofxButton*)sender; button->getName();} Arturo's solution worked fine for me
View ArticleSending OSC over SLIP
I was using the default 9600 baud rate, but I tested with 115200 too, but the hangs still the same... When sending just the integer keys (every seconds) like on the example it's working almost...
View ArticleSending OSC over SLIP
Yeah—might be helpful to catch the errors, and see what the malformed message is. I know that I was running into issues when working with this that there were some values for baud rate that worked,...
View ArticleOut of OF tree addons
I'm wondering if it is possible to compile and run addons out of OF tree.I would like to have something like : myaddons +ofxAddon1 +src +example-addon1 +ofxAddon2 of_vRelease of_vNightly of_vPersonal...
View ArticleUnknown type name 'string'
Thanks, but it was selected that way already, so this is apparently not the solution.
View ArticleMulti dimension arrays
images are not bidimensional in memory, they are a 1 dimension array and you access them by calculating the position in the array from the x and y, the formula is x + y * w. or simply by incrementing...
View ArticleOut of OF tree addons
with the command line project generator, or by updating the addons.make file and then running the normal project generator over the project, you can use relative paths to add addons from anywhere. you...
View ArticleMulti dimension arrays
I am not sure I follow whats wrong. The statement: unsigned char *pixles; pixles = myImage.getPixels(); myImage.setFromPixels((unsigned char*)pixles,width,height,OF_IMAGE_COLOR); I believe creates the...
View ArticleMember access into incomplete type 'ofAppiOSWindow'
Jeong, using the iPad I still get all the no type named string errors.
View ArticleWanted // PJLink App for Mac OSX (Projectors & networks)
I will certainly try that. I have found that this product, called the PowerTail Switch, can be used to remotely turn on AC power. There is a feature in the Epson 1960 that allows for it to turn on...
View ArticleOut of OF tree addons
OK it works. I can compile example-addon1 with addons.make :../../../myaddons/ofxAddon1or ../../ofxAddon1 Just have to triple-check the number of ../
View Article