Combining 2 applications in just 1 window ie live + static video side by side
Does it have to be two separate applications ? Can't you just run the video grabber code and the video player next to each other in one app ? It would be the easiest! Something like:...
View ArticleGenerate all examples projects (XCode)
Hi. I am using OF from GitHub (current master branch, periodically pulling changes). So far - everything works. But as I am a novice "developer" so I am still checking OF examples pretty often. The...
View ArticleCombining 2 applications in just 1 window ie live + static video side by side
Thanks. Since I'm dealing with video in each application, and the source video is 1920 x1080, what I need is to be able to crop as well as position(draw) the video, so that there is no distortion....
View ArticleGenerate all examples projects (XCode)
I found a script "openFrameworks/scripts/osx/buildAllExamples.sh", hoping this will generate project files for me, but actually it fails to build because of missing Xcode project files.
View ArticleCropping live webcam video
I have an HD webcam feed that I need to crop to a window of just 960px wide x 1080px high. There is a crop() method for ofImage but nothing similar for video I can see. In order to crop (without...
View ArticleMaterials for 3D objects?
How can you change the material for a box for example. How can I make something look like glass, or metallic, or like a prism. I'm thinking it has something to do with shaders. but how would I go...
View ArticleCombining 2 applications in just 1 window ie live + static video side by side
You can use the drawSubsection function to resize and crop your 1920x1080 video to something that would match what you want.
View ArticleCombining 2 applications in just 1 window ie live + static video side by side
Thanks again!. Was going to try this https://github.com/armadillu/ofxTextureCrop but drawSubsection seems like what I was looking for. The only issue is that the video classes I am using...
View ArticleSuggestions for an ofAddonManager
there was a discussion about this in the bug tracker. it seems you can already place the addon anywhere, specify it in your addons.make and pg takes care of it....
View ArticleUbuntu executing error. boost::fliesystem
First i tested in ubuntu 15.04 with same bug and i update my os and happened in 15.10 too.
View ArticleCombining 2 applications in just 1 window ie live + static video side by side
Something like that should work: ofVideoGrabber vid; vid.getTextureReference().drawSubsection(0, 0, vid.getWidth(), vid.getHeight(), vid.getWidth()*0.5, vid.getHeight()*0.5) (obviously you need to...
View ArticleGenerate all examples projects (XCode)
you can use the project generator to create the project files. the easiest is to get it from the download in the web but you can also build it from github
View ArticleCropping live webcam video
Hello, grabber.getTexture().drawSubsection(0,0,960,1080,cropped_x, cropped_y, cropped_width, cropped_height); should do the trick without using getPixels() that sends pixels back to the CPU...
View ArticleNew Searchable Addons Site
@Dorald @icq4ever thanks guys! happy to hear you're finding the site useful.
View ArticleHow to set mouse position
I can move cursor around but unable to link XTEST in of have you accomplished that ? I can do it in pure C++ , but I need a GUI for feedback to user using of for it { I am creating a NUI device } ......
View ArticleMaterials for 3D objects?
You can apply material to a mesh using ofMaterial, you can find an example here https://github.com/openframeworks/openFrameworks/blob/master/examples/3d/ofNodeExample/src/ofApp.cpp Or you can write...
View Article