Raspberry Pi camera board + OF
hmmmm... Have you setup for a camera at raps-config?https://www.raspberrypi.org/documentation/usage/camera/README.md
View ArticleMouth tracking with ofxFaceTracker
I don't think this is possible, this plugin is a wrapper around this https://github.com/kylemcdonald/FaceTracker, which track faces, and inside a recognized face it can detects the single parts. I...
View ArticleFMOD conflicting DLL file problem?
Ok, I seem to have fixed the problem myself now. I first downloaded the latest version of FMODex sdk and replaced all lib, inc and dll's in openframeworks for the newer FMODex(Stable 4.44.59) do not...
View ArticleRaspberry Pi camera board + OF
wow thanks.that did the trick. for the records, i did not change the gcc. i just enabled the camera as per your last link. i also had to command out this line...
View ArticleCan openFrameworks do live coding and how
Meanwhile in CMake OF : It also can be done in OSX / Windows since cmake-based OF compiles to shared libraries by default now for better link speed (on Mint 17.3 with gold linker it's half a second),...
View ArticlemousePressed equivalent of toggle button
This is working fine for me when pressing the left mouse button. void ofApp::mousePressed(int x, int y, int button){ if (button == 0) { clicked = !clicked; cout << clicked << endl; } }...
View ArticleHow to set framerate for recording from webcam
Thanks for all the information. I will try some of this stuff out. Thanks for your time and effort in the responses.
View ArticleHow to set mouse position
Hi sir I am trying to use the above snippet please tell if I am right this function will go in ofApp.h and to use it we will call it in ofApp.cpp as move_mouse_pointer(x,y); when i do taht it compiles...
View ArticleHow to use the mouseDragged event?
Very very new to coding here, just a little bit confused on how to use the ofApp::mouseDragged() function. I want to make something that draws a bunch of circles along the users dragged path, similar...
View ArticleHow to use the mouseDragged event?
Hi, I always find it easy, when I am not sure exactly what a function does, to test it with printing output to the console. For example here you could use this void ofApp::mouseDragged(int x, int y,...
View ArticleText on 0.9.0 release
Hi there!Thanks @arturo for implementing this! I'm having an issue to get it to work on windows at the moment tho.Using Visual studio community 2015 with the feature-ttfUTF8 branch i'm getting a...
View ArticlePixelate entire canvas
hello i am drawing a 3d scene with lighting, and i would like to pixelate the entire canvas to give it a low-resolution or mosaic effect. i started experimenting with shaders, but i was finding that i...
View ArticlePixelate entire canvas
Hi there, Using a shader is the way to go. But you don't need to re-work everything out. A pixelate effect is post-processing, so you just need to draw your scene to a frame buffer and use that output...
View ArticlePixelate entire canvas
Hi, What I would do would be to draw the scene into an ofFbo (offscreen canvas), then draw that flat image to the stage with a shader like...
View ArticlemousePressed equivalent of toggle button
Thanks for the reply. I didn't have the cout local but it returns now a 1 with a 0 right after it. Two values at once and thats without releasing. I am on 8.4 on xcode 7.1.1 El Capitan. void...
View ArticleCan openFrameworks do live coding and how
oh, this is really cool. too busy at the moment, but i really wanna try out the cmake OF.
View ArticleText on 0.9.0 release
i haven't tested this branch on windows so it might not work there, i'll need to review it once we finish 0.9.1 and we can merge new features into master. meanwhile if someone finds a fix please post...
View ArticlemousePressed equivalent of toggle button
I think your mousePressed function is executed twice, maybe in the fix you found? Because this code seems to be fine, it worked fine for me on an empty project So it should be somewhere else I guess
View Article