Tagged Questions

Openscenegraph is an OpenGL renderer and scene management API/toolkit.

learn more… | top users | synonyms

22
votes
10answers
1k views

3D modeling for programmers

I'm studying Computer Graphics as part of my curriculum at my university. The course focuses on scene modeling, rather than rendering or other aspects of computer graphics. We're learning the math ...
7
votes
4answers
2k views

In a multi-threaded C++ app, do I need a mutex to protect a simple boolean?

I have a multi-threaded C++ app which does 3D rendering with the OpenSceneGraph library. I'm planning to kick off OSG's render loop as a separate thread using boost::threads, passing a data structure ...
3
votes
2answers
1k views

Coordinate Transformation C++

I have a webcam pointed at a table at a slant and with it I track markers. I have a transformationMatrix in OpenSceneGraph and its translation part contains the relative coordinates from the tracked ...
2
votes
2answers
79 views

Integrating OpenSceneGraph with Qt

I have fiddled around with OpenGL on Qt. But now I want to have complex scenes. (With multiple COLLADA/MD2 models loaded). For this I'm thinking of using OpenSceneGraph (OSG). Is it possible to ...
2
votes
1answer
330 views

build OpenSceneGraph 3.0.1 for iOS

I'm trying to build the OpenSceneGraph for iOS as specified in the README file. cmake -G Xcode \ -D OSG_BUILD_PLATFORM_IPHONE:BOOL=ON \ -D CMAKE_CXX_FLAGS:STRING="-ftree-vectorize ...
2
votes
1answer
916 views

VTK (visualization toolkit) versus OSG (OpenSceneGraph) , other?

Does anyone have experience to fairly compare VTK and OpenSceneGraph? I'm more familiar with VTK, but I'm curious as to whether anyone has tried both extensively. I have both built, 5.6 vtk and ...
2
votes
2answers
810 views

Game engine for augmented reality

For an augmented reality project I want to display a high resolution live camera feed. Then in front of this I want to display a model than can be manipulated (translate, stretch, etc) in real time. ...
1
vote
1answer
167 views

help Implementing seek behaviour of objects on a plane in OpenSceneGraph?

Hi I have created an open plane area with thin cylinders on it like pucks, they bounce around the area and have collision detection for some larger cylinders also placed on the plane. I am trying to ...
1
vote
2answers
479 views

3DS file loader for opengl

this is my 1st question in the site. I need a 3DS model loader for opengl applications. Loader should also be able to load .jpg textures. I tried to use OpenSceneGraph for this purpose but this time I ...
1
vote
3answers
614 views

Export from OpenCascade, import into OpenSceneGraph

We have a modeling tool which uses OCC, and a 3d editor using OSG. What i want to do is, export the model from the first tool and import into the second tool. I have been searching the web for days, ...
0
votes
0answers
14 views

I'm getting “ld: library not found for -lOpenThreadsd” errors

I have added a few dylibs with 'add existing framework' to my created xcode project, but now, I'm getting "ld: library not found for -lOpenThreadsd" errors. What more do I have to do?
0
votes
0answers
29 views

OpenSceneGraph View Matrix Need Explanation

I have been Googling for the past hour trying to simply find an explanation of the camera view matrix in open scene graph. I currently have the code: viewer.getCamera()->setViewMatrix(); I know ...
0
votes
0answers
22 views

Angle between two quaternions in OSG

In OpenSceneGraph I have two osg::Quat's I would like to know the angle between these two osg::Quat's. How would I do this?
0
votes
0answers
91 views

OpenSceneGraph on iOS / Link error: Apple Mach-O-Linker (id) error

I'm trying run an OSG example on the iPhone simulator. First of all I downloaded the new Release 3.0.1. Then I run this cmake command: enter code here ccmake -G Xcode \ ...
0
votes
1answer
42 views

With OpenSceneGraph, How do I make it use GL_REPLACE to render my texture?

With OpenSceneGraph, How do I make it use GL_REPLACE to render my texture? I do not want the color of my texture to change with orientation. I also want the rendered color to match the values of the ...
0
votes
1answer
1k views

How to get cmake's PKG_CHECK_MODULES to find my cairo library in Windows

I'm trying to build OpenSceneGraph's pdf plugin on a win32 box. The plugin is using cmake's PKG_CHECK_MODULES macro to find cairo and poppler libraries. I don't know how to install these in such a ...
0
votes
4answers
391 views

Disable texturing in OpenSceneGraph

I need to completely disable texturing in OSG. I tried glDisable(GL_TEXTURE_2D) and also using an osg::stateSet, but some nodes that have textures still render their textures. Is there any way to ...
0
votes
2answers
406 views

Invalid lock sequence error in an OpenSceneGraph application

I have an application that is built against OpenSceneGraph (2.6.1) and therefore indirectly OpenGL. The application initializes and begins to run, but then I get the following exception "attempt was ...
-1
votes
1answer
58 views

Need plan of action to upgrade graphics toolkit in company's applications

My job is to upgrade all of our applications that use OpenSceneGraph (an openGl toolkit) version 0.9.9 to the latest and greatest 2.8. Well quite a few caveats come with this task: 1.) After version ...