OpenFrameworks compiler error?
Hi, I've been searching for a topic similar to my problem but I haven't found.... Anyway, I have the most recent version of OpenFrameworks that I downloaded from the official website and I have...
View Article[SOLVED] Smoothing position coordinates
arturo: position * 0.9 + newCentroid * 0.1; I have a similar problem but I didn't manage to sort it yet. HOw do I get the correct position1 and newPosition? I have a stream of position from...
View ArticleofxHapPlayer example for Code::Blocks
Thats definitely the case since quicktime is only 32 bit and no longer maintained by apple. They abandoned it on their own platform in favor of AVFoundation. OF 0.9.0 saw a shift over to 64 bit so...
View ArticleHow to deploy finished project?
Actually install the C++ redistributable packages associated with the compiler version that you compiled the project with. which is what @andre described above but you can also just download an...
View ArticleOpenFrameworks compiler error?
My hunch is that the example is not at the same level as your other apps. Notice that it uses relative pathing so try moving the examples from the addon into the apps/myApps folder
View Article[SOLVED] Problem setting color
I tried ofImage img; img.allocate(nbX, nbY, OF_IMAGE_COLOR); for (int y = 0; y < nbY; y++) { for (int x = 0; x < nbX; x++) { img.setColor(x, y, image.getColor(x, y)); } } img.resize(1024, 768);...
View ArticleKinect v2 and lights
The kinect cameras use infrared light so they work even in the dark. If your doing depth tracking the ambient light settings shouldn't be much of a factor unless you have something introducing a lot...
View Article[SOLVED] Problem setting color
I think i have tried everything i was thinking of but with no luck. Whatever i am testing it runs ok.When i set the color using image.getColor(x, y); every circles are white. I must be doing something...
View ArticleConnecting firewire audio interface ruins openframeworks render
after much experimenting i found the problem goes away when the window is resized to less than 560 x 780. does glfw do something weird with resolutions bigger than this?
View ArticleMultiple Kinect setup for real time volumetric reconstruction and tracking of...
@jasbro I'm also delving into a similar project, so I'm happy to exchange info as I make progress. For now: I'm just looking for kinect 2.0 based photogrammetry models, but after that I will be moving...
View ArticleAudioOutputExample fail on Ubuntu 14.04 LTS
Hi! It's couple weeks i try to figure out why AudioOutputExample don't produce sound.At begining i tryed to uninstall PulseAudio to have only Alsa for direct access to sound card.But too much...
View ArticleCalibrate fisheye lens - ofxCv
I have successfully integrated the ofxCv libraries calibrate functionality into my project (a threaded multi-camera system for Point Grey GigE Cameras) in Ubuntu 15.04 x64 with OF 0.8.4. The problem...
View Article[SOLVED] Problem setting color
This is really weird, have you tried simplifying your ball::draw function? You can also cout the image.getColor to see if it's really white. I'd also try loading the png instead of the jpg image......
View Article[SOLVED] Problem setting color
damn it !as expected, the problem stands between the keyboard and the chair... what i did : setupMatrix(); image.loadImage("sign.png"); image.resize(nbX, nbY); better like this :...
View ArticleHow to draw edge of cube?
Hello,I just started using OF. I love it, but it's my first contact with 3d so for start i just edit examples. I have simplify 3dPrimitivesExample to something like that: ... ofFill();...
View ArticleAudioOutputExample fail on Ubuntu 14.04 LTS
try selecting the deviceID manually, you can get a device list from the sound stream sometimes in latest versions of ubuntu it seems it's selecting the hdmi out in the computer so you don't here...
View Article[SOLVED] Using ofParameter to modify ofRect within a class with Gui
Is there an event i could use like valueChanged from ofParameter ?
View Article[SOLVED] Using ofParameter to modify ofRect within a class with Gui
Hi, the example in examples\gui\guiExample\src shows how to add a listener for when the value changes in an ofParameter. /A
View Article[SOLVED] Using ofParameter to modify ofRect within a class with Gui
Just saw it thanks.
View Article[SOLVED] Using ofParameter to modify ofRect within a class with Gui
also guiFromParameters is even a better example on how to use ofParameter & ofxGui
View Article