openFrameworks is an open source C++ framework wrapping graphics, audio, image and video libraries in an API designed to be minimal and easy to use.
2
votes
0answers
34 views
Coordinate conversion from input for drawing in OpenGL
I am trying to do an off-axis projection in my application and trying to change the perspective of the scene as per the user's head position. Normally, given that I had to draw a box on the screen, I ...
0
votes
0answers
31 views
Is it possible to take an image (or sequence of images) and pass it to Mac OSX as a hardware device (webcam) using C++/OpenFrameworks?
Pretty new to oF and C++, but trying to open up communications between Flash (AS3) and a Canon DSLR. We've successfully done it using a socket server (using ...
0
votes
0answers
13 views
Building Music / Multi Media Software and Interfaces [closed]
I am a web programmer, but also a musician. I think it's time for me to start combining the two. I was wondering what languages / frameworks / things should start learning? I'd like to build self ...
0
votes
1answer
22 views
Draw function timer openframeworks
How can I, using the draw() function of openframeworks, draw a square - ofRect (x, y, w, h) for x in x seconds?
I know it is possible since the draw uses fps but I do not know how to manipulate in ...
0
votes
0answers
13 views
Popular reasons for Xcode not building properly
I am getting into xcode after spending a few years in Quartz Composer and Processing.
I am struggling with getting the simplest included examples in openframeworks and Cinder to build properly ...
0
votes
1answer
23 views
Detect multiple bodies in Kinect?
I am working with kinect in openframework using the ofxKinect addon, which is great and plenty fun!
Anyway I am looking for some pointers or a direction when dealing with multiple bodies on the ...
0
votes
0answers
17 views
Is there any OpernFrameworks USB Camera and Microphone capture crossplatform plugin? [closed]
Is there any opensource OpernFrameworks Camera and Microphone crossplatform (Windows, Mac OS X, Linux) plugin? (To get audio samples and frame data)
3
votes
1answer
58 views
Change of coordinates with glFrustum
I am trying to use glFrustum for a perspective projection and as I understand glFrustum like glOrtho can be used to modify the mapping of our desired coordinate system to real screen coordinates (as ...
-1
votes
1answer
18 views
OpenFrameworks: Move “camera” trough ofVbo?
I have a 3 dimensional shape drawn with an ofVbo and I would like to move trough it (like you'd move trough a space in a first person shooter). I thought I should use an ofCamera for this but I'm ...
0
votes
1answer
54 views
Draw in non-normalised coordinates - glFrustum
On using glFrustum,
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glFrustum(-1, 1, -1, 1, 0.1, 1000.0);
glLoadMatrxi(GL_MODELVIEW);
glBegin(GL_QUADS); //A room's left wall
glVertex3f(-1.0, 1.0, ...
0
votes
0answers
9 views
of3dUtils_1.o error in compiling openframework
I am trying to compile the open frame work for android on windows.
The steps in multiguster are saying some files are supposed to be generated in lib\android but when I look inside, there's nothing ...
1
vote
1answer
93 views
Off-axis projection with glFrustum
I am trying to do an off-axis projection of a scene with OpenGL and I gave a read to the document to Robert Kooima's off-axis projection and have a much better idea now of what actually has to be done ...
2
votes
0answers
72 views
C++: Dealing with 'Vector subscript out of range'
Using openFrameworks 0.7.4, VS2012, v100 Platform Toolset.
I'm making a family of circles, each spawning children circles if circles.size() < 200 && rand() % 20 == 0.
Each circle is ...
1
vote
1answer
60 views
Achieving Off-axis projection
I am trying to get an off-axis projection effect where the screen's content change as per the position of the user. This is similar to what is being done here in this video: ...
2
votes
1answer
90 views
Getting coordinates for glFrustum
I just started reading about OpenGL topics, specifically about Viewing for my current needs. I am trying to understand glFrustum for a perspective projection of objects that I have drawn on the screen ...
1
vote
1answer
91 views
Getting steady real world position of a joint [Kinect, OpenNI]
I recently started using the ofxOpenNI add-on to use the Kinect tracker device and currently facing a small doubt here.
ofxOpenNI as I see, has exposed two methods to get the positions of the tracked ...
1
vote
0answers
114 views
Why game devs don't use sexy framework as Polycode? [closed]
Maybe my question could seem a little controversy, but I was wondering why Polycode framework is not so widely used by artists and game devs community as openFramework and Cinder are. I took a little ...
0
votes
2answers
85 views
c++: a class accessing an std::vector of main class by pointers goes wrong
I'm building my C++ project with VS2012 Express, Platform Toolset v100, and with openFrameworks 0.7.4.
I have a class called NameRect and this is part of the .h file:
void config(int cx, int cy, int ...
0
votes
0answers
39 views
Can I turn off poco exception handling and let a thread crash as normal?
I'm using openframeworks and underneath poco is handling the threads... The threads run through an error handler (Poco::ErrorHandler).
When I hit an exception on my thread I get a typical message in ...
0
votes
0answers
25 views
ios - import using openframeworks and use it glview
Just a thought, is it possible to use openframeworks to import some 3d objects then pass it to glview from ios then mess with glsl?
I am using of_ios_074 at the moment and based on further reading it ...
0
votes
1answer
106 views
How to build a 3d diamond in openframeworks for iOS
How to build a 3d diamond in openframeworks for iOS? I'm having a hard time finding useful tutorials for 3d rendering in openframeworks, and I am coming from Processing.
0
votes
1answer
87 views
Image retrieval system by Colour from the web using C++ with openframeworks
I am writing a program in C++ and openFrameworks that should hopefully implement an image retrieval system by colour matching. I have got an algorithm to find the match in a database by an rgb value. ...
0
votes
0answers
59 views
Generate one texture makes shader not work
Shader code:
#extension GL_ARB_texture_rectangle : enable
uniform sampler2D tex0;
uniform sampler2DRect tex1;
uniform int sampler_type;
void main(void){
vec4 col;
if ( sampler_type == 0 ...
0
votes
0answers
86 views
Collada from Blender have wrong normal when import to Openframeworks
I have normal direction problem in collada file that I export it from Blender when I import it via Assimp into OpenFrameworks. I use Blender to flip the normal and export it again but the result is ...
0
votes
1answer
89 views
xcode - no option to add other c flags
I am working on a project for iOS using openFrameworks (C++) and Pure Data. I need to add C flags to the xcode project in order to compile. When I search the build settings for the other c flags ...
1
vote
1answer
138 views
game of life cellular automata using c++ vectors in openframeworks
I am building a game of life CA in C++ (openFrameworks). As I am new to C++ I was wondering if someone could let me know if I am setting up the vectors correctly in the following code. the CA does not ...
0
votes
1answer
61 views
How to calculate the distance between ofColors in openframeworks
What I was thinking to do is to convert ofColor to l*a*b color space and measure the euclidean distance. But I don't know how should I do it in openframeworks?
0
votes
0answers
70 views
OpenFrameworks ofThread example Discourse
ANSWERED
I'm very new to OpenFrameworks C++ programming and i try to put an ofThread in my app.
I try to put a thread on my videoGrabber
Regarding the example of OpenFrameworks Website i should ...
-1
votes
1answer
41 views
conflict between Armadillo and ofxOpenCv
I am using Armadillo as my matrix library. At the same time, I use OpenFrameworks in order to develop my codes. When I try to use ofxOpenCv together with Armadillo, I get the following errors:
...
2
votes
1answer
117 views
osx audio unit multi channel output
i have been searching the net for an answer for weeks without luck.
i have a maudio profire 610 multi channel audio interface.
how do i set the AudioStreamBasicDescription properly to work with all 8 ...
0
votes
2answers
122 views
New to C++, “EXC_BAD_ACCESS” error I don't understand
I am attempting to translate a 2 dimensional cellular automata from Processing to openFrameworks (C++). I have written classes for the cells and for the game of life functionality. The application ...
0
votes
0answers
26 views
fonts and xmls not found in Xcode's open framework built product
I want to move my open frameworks project to other machines for testing. but when I try to open a build product (exported via the organizer) the app starts up without the text I set (via ...
0
votes
1answer
155 views
Connecting Node.js and openFrameworks
What is the best way to connecting Node.js code and openFrameworks(oF) code?
I though zmq would be nice, because it seemed easy to use (has many wrappers), and light and fast. ofxZmq, the zmq addon ...
0
votes
1answer
91 views
No matching function for call to ‘Event<float>::notify(NULL, const double&)’|
I am using a framework here for one of my programs and creating an event (from the example here)
.h file
ofEvent<float> onVolumeChange
.cpp file
//main method()
...
-1
votes
1answer
84 views
Error opencv & openframework While cropping image
I have the following code:
IplImage* f( IplImage* src )
{
// Must have dimensions of output image
IplImage* cropped = cvCreateImage( cvSize(1280,500), src->depth, src->nChannels );
// ...
0
votes
1answer
126 views
Hit testing between four rotating vertices
I have a simple rectangle here in my program on which I had to do hit testing. I am using openFrameworks but I think the problem here is related to OpenGL topics as well.
public class Shape : public ...
0
votes
1answer
87 views
Stop the inversion of Y axis in camera
I have a program in which I have a simple rectangle drawn over the screen. When I put the rectangle inside a camera such as a ofEasyCam, it translates the position of the rectangle to the centre of ...
1
vote
3answers
60 views
c++ segFault issue
I'm trying to do a program that creates various filters through webcam feed and ran into some issues with BLOB-analysis and some other.
I'm getting segFault everytime I activate my grassfire ...
0
votes
1answer
99 views
Generate vectors equidistant from a point
I am trying to generate vectors equidistant from a point at the centre of the screen.
Previously, I was following the below approach
1. Generate random numbers Random(0-400, 0+400) for x, y and z
2. ...
1
vote
2answers
88 views
can I call an app in OpenFrameworks something other than testApp?
I am working with OpenFrameworks for the first time (I am also rusty at C++).
I am trying to build an app with OFX, and I want to call my app something other than testApp. I am building off the ...
3
votes
2answers
117 views
Orientation of figures in space
I have a sphere in my program and I intend to draw some rectangles over at a distance x from the centre of this sphere. The figure looks something below:
The rectangles are drawn at (x,y,z) points ...
0
votes
1answer
63 views
Android: resources from referenced library project hide resources of client appplication
I have two Android projects:
Project A: a library project (the AndroidLib project of openframeworks).
Project B: android project that references Project A.
The problem is that when I add a string ...
1
vote
0answers
108 views
ofxbox2d mapped puppet (using ofxopenni) and collision detection
I am a grad student still learning openFrameworks and my c++ may be a bit rusty.... I was looking at sosolimited / kinectcharacter project as an example to learn the kinect puppet dynamics - which ...
1
vote
1answer
113 views
Setup OpenFrameworks for Android on Windows 7
I want to install OF for Android on My Windows 7 machine and Eclipse IDE V 4.2.
I followed the instructions in http://www.multigesture.net/articles/how-to-setup-openframeworks-for-android-on-windows/
...
2
votes
0answers
142 views
Using homography for a virtual monitor [closed]
I'm currently working on a project where I need to create a virtual screen for feedback during a game
My program draws an image at a tracked position. What I wan't it to do is to have this image ...
0
votes
1answer
108 views
Exporting a screen capture image bigger than native screen resolution?
I've tried this in Flash and openFrameworks but had the same problem in both...
I'm building up a canvas made of 1000s of images, then I am exporting the final image as a jpg
I'd like to export it ...
1
vote
1answer
316 views
Canon EDSDK 2.11 on OSX EdsOpenSession exc_bad_access
I'm trying to use the Canon EDSDK 2.11 on OSX with a EOS Xsi. I tried running the sample code, I've written my own code, and I even downloaded openFrameworks and an add-on for the Canon EDSK, ...
2
votes
2answers
200 views
C++ store reference to class member in a vector
Consider a Drag object:
class Drag {
public:
Drag(ofVec3f _pos);
ofVec3f pos;
}
Position is stored when a new instance is created:
Drag::Drag(ofVec3f _pos) {
pos = _pos;
}
Position ...
0
votes
2answers
105 views
Declaring an object within its class
I'm trying to port the Bouncing Bubbles Processing example into C++ (with OpenFrameworks) and I've run into a bit of a hitch. In the definition of the class:
class Ball {
float x, y;
float ...
1
vote
4answers
299 views
Interpolate from one color to another
I am trying to get an interpolation of one color to another shade of the same color. (for eg: sky blue to dark blue and then back).
I stumbled upon some code that could be used if the range was from ...
