Optimal Mac hardware and external Thunderbolt GPU
This seems like such a hack at this point, I'd be very careful about using this 'live'. Best,Andreas
View Article32 * 32 led matrix chain
As described in doc, really easy:https://github.com/scanlime/fadecandy There are many examples to code with itI've not been looking to interact with OF yet
View ArticleHow to build the examples for ios?
Wow guys, amazing ... nobody knows how to answer this simple question ? like ... " read the docs ".. or " it's impossible ;o)" its not like I waned to embed OFX into Apple IIe eumlator ;o) or compile...
View ArticleofxCv contourFinder.draw()
So I am still working on my multicam project. I have almost finished the tracking with ofxCv, which is truly incredible. However, I am becoming frustrated by the draw() function for the contourFinder....
View ArticleHow to build the examples for ios?
neshume: I am working on both ios and android and I have not sees a way to build the examples ? If you are using OF084, you can find the related setup guides in the download page. If you are using the...
View ArticleHow to build the examples for ios?
Thx hubris, Simple and easy ... I like OFX already Cheers, Neshume
View ArticleEvent dispatching
This is exactly the issue I'm having now. Dragging the mouse on a ofxGui component still triggers the ofEasyCam behind it. Is there a way to stop it on 0.8.4? I suppose all the efforts are on...
View ArticleEvent dispatching
This is fixed in 0.9 which is by now completely stable, the only things that we are fixing are related to the project generator so you can use the nightly builds without problem and your project will...
View ArticleRaspberry pi 2 + kinect
helloi test a two new kinect cameras (1414 model) and have the same problem. [verbose] ofxKinect: context inited[verbose] ofxKinect: 1 device foundFailed to open camera subdevice or it is not...
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
Thank you, that worked for me too with XCode 7.0.1 and 10.11
View ArticleofxCv contourFinder.draw()
Hi, You can do, at the beginning of draw(): ofPushMatrix(); ofScale( scale, scale ); ofSetColor(255); cam.draw(0, 0); ofSetLineWidth(2); contourFinder.draw(); // [...] And insert the ofPopMatrix()...
View ArticleofxCv contourFinder.draw()
Ooops, you also must touch mousePressed() : void testApp::mousePressed(int x, int y, int button) { targetColor = cam.getPixelsRef().getColor(x / scale, y / scale);
View ArticleBoost is only partial?
yes we have only included boost filesystem and only because it will be soon in the c++ standard library, once that happens we'll remove boost completely. i think there's some addon that includes full...
View ArticleofImage draw anti-aliasing
enabling antializasing won't make any difference for this. antialiasing is actually jus tused for drawing geometry not for textures. There's a couple of things that i would try, first there's a hack...
View ArticleofxCv contourFinder.draw()
Usually, the value of a scale variable multiply the size of the drawn objects. For example:scale = 2 for double size.scale = 0.5 for half size.That's why I wrote: ofScale( scale, scale ); Doing that,...
View ArticleGenerating ofMeshes from video feed
Hello, satre: I got the idea of generating a dynamic one based on a video input I recommend you to start with the 3d/meshFromCamera, satre: is it possible to generate meshes form images based upon...
View ArticleofImage draw anti-aliasing
Thanks for the reply! I tried ofDisableTextureEdgeHack(), but there is no difference. I'm not sure what you mean about drawing my images with a different size. If you are asking if I'm calling one of...
View ArticleofxCv contourFinder.draw()
lilive, you are so right. Your logic is much cleaner. I was basing it off of my existing arithmetic based on total cameras, it's an easy fix in the scale var to make it a float 1/numCameras. That...
View Article