Compiling FaceSubsitution examples
Yes but you need to download it and install it manually, for every Xcode update
View ArticleOf 0.9.0 dependencies (Visual Studio 2015)
Thanks @DomAmato, installing the 2013 redistributable solve the crashing without error issue I was having.
View ArticleCreating a pointer to a vector of Images
I'm working with openFrameworks to try and create a pointer to a vector of images that are stored in a class. I'm creating a sort of image sequence editor. There is a grid of images on one side and a...
View ArticleOF 0.9.0 Rasberry Pi B+ sound problem
I am running clean installation of jessie on raspberry pi B+ and found the following problem.My OF application uses ofSoundPlayer but I can't hear any sound. On start application reports:AL lib: (WW)...
View ArticleKinectExample stop working (model 1473 /Xcode7.1/ El Capitan 10.11).Does...
I will buy a new kinect.
View ArticlesetGLVersion(3,2); can't use ofLineWidth
yes that's normal in opengl 3+ glLineWidth doesn't exist anymore if you want to do thick lines you need to create them as a mesh or using some kind of geometry shader... in a future version we'll...
View ArticleLoading Videos via ofThread
Hi! I am on the same situation Anybody has any update? Is v0.9.0 giving any news on this?Thanks!D!
View ArticleRecording mouse positions with high sample rate
Hey, I'm working on a project which requires me to record mouse movement with high sample rate(500hz+). And store it in a file. Any pointers on to how this could be achieved?
View ArticleLoading Videos via ofThread
Hello again,I am sorry if this is just too noobie but I feel a bit confused. Sometimes is not that easy to jump into conversations regarding versions, SDKs, toolkits, frames and libraries, even more...
View ArticleKinectExample stop working (model 1473 /Xcode7.1/ El Capitan 10.11).Does...
Not sure if that helps, but I had strange issues with a kinect showing sometimes up and sometimes not some years ago. I just had to replace the power supply and everything worked well again.
View ArticleofVideoPlayer.load and .loadMovie problems when streaming
Attending to this: https://developer.apple.com/library/prerelease/ios/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/02_Playback.html Looks like you need to call specific constructor when...
View ArticleLoading Videos via ofThread
in 0.9.0 you can call loadAsync("filepath") and it'll load the video in the background. you need to wait until isFrameNew returns true to be able to use the player
View ArticleLoading Videos via ofThread
Thanks!!!! I wil try it asap! I will get back once I have it
View ArticleCreating a pointer to a vector of Images
You'd need to dereference the pointer to access the ofImages like so: (*viewImages)[currentFrame].draw(0, 0); Not really sure if changing this to be a vector of pointers to individual ofImages would...
View ArticleRecording mouse positions with high sample rate
You could interpolate the positions between the values you can actually record: Let's say your app is running at 100fps - certainly doable if there isn't much happening graphically or otherwise -...
View ArticleCreating a pointer to a vector of Images
it's also easier if you return a reference instead of a pointer like: vector<ofImage> & GridElement::getImages(){ return images; } that way you get a reference to the original object but...
View ArticleHow to set framerate for recording from webcam
Just to add a note to @DomAmato's great suggestion - you can get pretty solid framerate with ofxVideoRecorder by adding an audio track, even a silent one. It does a better job syncing to a static...
View ArticleProblems compiling ofxMaxim example for iOS in XCode
Maybe I'm going about this the wrong way but I'm having problems getting ofxMaxim working for iOS. I've installed the iOS version of OF. Then I've git cloned the latest version of Maximillian from...
View ArticleHow to set framerate for recording from webcam
Thank you both for the replies. I'm looking into ofxVideoRecorder right now. I'm not 100% I understand what you mean about the audio track however. You mean record a silent audio track at a particular...
View Article