Novice question> PC vs mac >summary of OFX differences
Awesome reply, thanks very much. Just diving in again on the PC side but will let you know how I make out.
View ArticleBest way to draw an array of objects
i wonder what are the vertex indices getTesselation() is usingI can't figure out how to reorder them (if this is the issue i am facing)
View ArticleBest way to draw an array of objects
there was an error in the code i posted for the polyline it should be: ofPolyline circle; circle.arc(0,0,radius,radius,0,360); for(int i=0; i<circle.getVertices().size()-1; i++){...
View ArticleBest way to draw an array of objects
yes i just also spotted the problem now this is working poly.arc(0, 0, radius, radius, 0, 360); for(int i=0; i<poly.getVertices().size(); i++){ mesh.addVertex(poly[i]); mesh.addVertex(poly[i+1]);...
View ArticlePathfinding algorithm implementation
Hi all, I read about this pathfinding algorithm and decided to try and figure out a way to do itNow I haven't looked up the actual algorithm, so I might be doing some weird or unlogical things; my...
View ArticleNeed some help with compiling> difference keying demo
Hi guysrevisiting an earlier project and simply trying to get the code compiling. Difference keying live webcam video advanced Hi guys, I programmed the following setup in OF. -Background video is...
View ArticleHow to add an addon on ubuntu codeblocks?
Hello ! Im sorry if this is a sillly question. I have tryed every single thing to ad an addon without succes. I already try pasting the addon in the addon folder and in my proyect folder and in every...
View ArticlePlaying Video on OSX 10.8 with 0090RC
I am trying to compile the videoPlayerExample in 009 on OSX 10.8 but haven't had any luck so far. I think it might be something small that I am missing, but can't seem to figure out what it is. These...
View ArticleBest way to draw an array of objects
the append method in ofMesh appends a mesh with indices into another, you can take a look into that code's method to see how it's done
View ArticleHow to add an addon on ubuntu codeblocks?
to add an addon you need to run the project generator and point it to the path of the project, add the addons in the project generator and regenerate the project which will update it without modifying...
View ArticleHow to enable point smoothing
I cannot seem to make smoothing for points activate. In the documentation it says that ofEnableSmoothing only works for lines, so I thought I'd just insert the openGL by hand:...
View ArticleBest way to draw an array of objects
i mean does getTesselation() does it a certain way i can't draw it correctly or is it me lacking some basics ?
View ArticleBest way to draw an array of objects
no, if you draw that mesh directly you'll see that it works right away but when you insert several of them into another mesh the indices will get messed up if you don't do it properly
View ArticleMultichanel Sound playing in external usb sound card
I work with a modified version the ofSoundPlayer that can select the needed device and can also select how many outputs are needed. I use 4, 6 and 8 channels.Actually it is mixed with my own work, but...
View ArticlePanorama stitching via openCv
In this example I grab the video-feed of 2 usb webcams (Logitech c920) and stitch them together via openCV's stitcher library. https://github.com/antimodular/ofxCv_stitch stitched.png3360x2100 1.96 MB
View ArticleMultichanel Sound playing in external usb sound card
I have use https://github.com/admsyn/ofxAudioUnit for osX successfully on up to 96 channels.I also often use multiple stereo USB audio device like the m-audio fasttrack and combine them to a multi...
View ArticleKinect measure object (get dimensions)
Hiim trying to develop an app to measure an object placed on the floor by placing my kinect on the ceiling looking down (see image 1). i want to get the "height width and depth" of any object in front...
View ArticleAnti Aliasing FBO in OpenGL ES
Hi all, I'm developing an iOS application in which I want to draw an ofMesh. When I draw it directly to the screen, edges are anti aliased finely. But when it is drawn in to an fbo it gets aliased....
View ArticleInteractive floor project
look for opencv, blob detection and choose an IR camera .almost everything on my site www.pisointeractivo.net was made using those concepts,actually i used openframworks to create the version 1 of my...
View Article