Android GPS Example?
Thanks so much Tallavi. I tried this all (including the ofRegisterGPS event and by defining a method in ofApp called "locationChanged" but am getting this error when I do this: Error:(19) undefined...
View ArticleIs there a manner to record from webcam in background?
Hi, I think the subject is pretty explanatory, I want to grab the input from a webcam and record it. I don't want the windows appears. This post is similar to my needs, but it doesn´ t say what I am...
View ArticlePi tracker, my first project
If you are looking for a place to post and share your source code, have you tried Github?
View ArticleofShader::load vs ofShader::setupShaderFromFile
When I try to substitute the line shader.load("shadersGL3/shader"); with shader.setupShaderFromFile(GL_FRAGMENT_SHADER, "shadersGL3/shader.frag"); shader.setupShaderFromFile(GL_VERTEX_SHADER,...
View ArticleofShader::load vs ofShader::setupShaderFromFile
Hi there! Since you are using GL3, you should also do: shader.bindDefaults(); Before linkProgram(). Alternately, you can also do: shader.load("vertex.vert", "frag_#.frag"); So that you can still share...
View ArticleofShader::load vs ofShader::setupShaderFromFile
Great, that solves the problem. That example looks quite useful, and it's well commented too, thanks!
View ArticleAndroid GPS Example?
It looks like the signature of the method is wrong. It needs to return void and have a single parameter of reference (not pointer) to ofxLocation. If you can't solve the issue, I suggest you write...
View ArticleProjectGenerator is crashing in my PC
I don´t know how to do that. Can you teach me ? . Other thing that I can try is to import addons without proyectgenerator but I don´t also know how to it. Do you how could I do that? .
View ArticleProjectGenerator is crashing in my PC
Ill manage to import an addon without using the proyectgenerator ! Awsome ! I mean, the proyectgenerator still doesn´t work, but at least I can manage to work.
View ArticleIs there a manner to record from webcam in background?
if your on osx or linux https://github.com/timscaffidi/ofxVideoRecorderif your on windowshttps://github.com/DomAmato/ofxVideoRecorder as for windowless check out this...
View ArticleIs there a manner to record from webcam in background?
I am working with Ubuntu 12.04, Thanks a lot for the links, I will check out them. Best!
View ArticleVocational coding course (London): learn to code, earn a salary
Dose non-eu students can apply for this course?
View ArticleVocational coding course (London): learn to code, earn a salary
Yes they can! Non-EU students are welcome!Application deadline approaching soon! Apply today
View ArticleGPU LUT + Photoshop
Thanks, It works perfectly. So nice to be able to use Lut with shaders. That could be great to be also included in the main OF lut's example.
View ArticleofxGui add listener to vec3f
Is there a way to add listener to a vec3fSlider? in my .h file I have ofxVec3Slider camPositionGui; and in my .cpp gui.add(camPositionGui.setup("Position vec3", camPosition, ofVec3f(-1000, -1000,...
View ArticleofxGui add listener to vec3f
Hello, Have you tried ofParameter instead of ofxVec3Slider ?
View ArticleofxGui add listener to vec3f
Not yet, will do, but any idea why it is not extended to the other types of sliders?
View ArticleofxGui add listener to vec3f
I have never used ofxVec3Slider or other sliders. I always use ofParameter.I know addListener() is part of ofParameter class so available for any type ofParameter handles.I can't tell for types when...
View ArticleLaunching and configuring terminal window from oF application
i am on OS X 10.10 with OF 0.8.4 this works: system("osascript -e 'tell application \"Terminal\" to quit'"); but when i try that on a OF compiled app the app does not quit. for example:...
View ArticleLaunching and configuring terminal window from oF application
The name of your application may not match the process. Can you check it on the Activity Monitor?
View Article