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

learn more… | top users | synonyms

0
votes
0answers
3 views

Using OpenSceneGraph with Code::Blocks

I have to integrate osg into my project on code blocks. In osg web site, there is only one unanswered post. Has anyone used osg and codeblocks together?
0
votes
0answers
45 views

How to apply textures to a model in openscenegraph?

I have a flt model which has references to *tga texture files. I converted these *.tga files into *.dds files using Nvidia texture utiilty tool (nvdxt.exe). I know how to read and apply single .dds ...
0
votes
0answers
35 views

Binary operations and Simple Solver

I'm making a small demo to suggest Qt and OSG at my company to make some things easier to everyone working with me. But I need to do it rather quickly. I need a library for 2D and 3D binary operations ...
-3
votes
0answers
53 views

How to become an expert in grahics? [closed]

I am very interested in graphics programming ,but there exists so many graphic algorithms.When I want to dive into some field, it becomes more and more difficult to understand the theory or the ...
0
votes
0answers
40 views

When building with cmake, prevent a third party library from using its own implementation of a find module, if CMake already comes with one

Rephrased Question How can I control the order in which CMake uses FindXXX.cmake modules? My exact issue For example, OpenSceneGraph comes with its own FindZLIB which is not as good as the FindZLIB ...
3
votes
1answer
102 views

Conversion to non-scalar type with std c++11 smart pointer

I am currently playing around with openscenegraph and it uses its own smart pointer. But I want to use the std c++11 smart pointer. now this is the working example code ...
0
votes
0answers
12 views

osgART help / guidance osgart_video_artoolkit2

I tried building osgART following the guidelines listed here: https://groups.google.com/forum/?fromgroups=#!topic/osg-users/a5b1ojwC3x0 The system is: windows XP and VS2010. While no errors have ...
0
votes
0answers
41 views

Does OpenSceneGraph use the core profile?

..as well as extending our support for desktop/workstation OpenGL with support for OpenGL 3.x and OpenGL 4.x and associated cutting edge extensions I was wondering if it is possible to use ...
1
vote
1answer
71 views

Difference between OpenSG and OpenSceneGraph

First of all I read the offcial comparison OpenSG and OpenSceneGraph. My current goal is to create a small game engine for learning purpose. I started with pure OpenGL but then I found those scene ...
0
votes
0answers
30 views

Creating an iOS project using OpenSceneGraph

I have successfully build OpenSceneGraph for iOS. I have all the .a files. I am now trying to import OpenSceneGraph into my other Xcode project. I am having some trouble with that. I have been ...
0
votes
0answers
32 views

Nvidia Texture tool

I have tried to compile nvtt plugins (osgdb_nvtt.dll) for use with virtual planet builder based on OpenSceneGraph. I have downloaded the nvtt library source code and project files from ...
0
votes
1answer
89 views

OSG with QWidget shows extra border

I have modified the osgViewerQt example in order to load a point cloud and visualize it in a Qt application. As you can see in the attached image, the cloud point cloud is shown but there is an extra ...
0
votes
1answer
133 views

Using OSG's osgViewerQt example with Qt signals/slots

I have already posted this in the OSG mailing list, but the mailing list seems to be a bit slow. Anyway, I'm trying to modify the osgViewerQt example by adding a new class of my own that will contain ...
0
votes
1answer
22 views

osgText with getBound()

Is it possible to do a getBound() on osgText without setting its position before that i.e. osg::ref_ptr<osgText::Text> label = new osgText::Text; geode->addDrawable( label.get() ); ...
0
votes
1answer
114 views

OpenSceneGraph and Multiple Viewers

I'm using OpenSceneGraph and Qt to develop a simulation software. Simulations can involve multiple bots in the same virtual world. My requirements for views are as follows: Ability to show static ...
0
votes
2answers
116 views

Get index node or name node when pick object

I use OSG on Android... I initialized indexNode= 0 in the main int main(int, char **) { osg::ref_ptr<osg::Node> model1 = osgDB::readNodeFile( "cessna.osg"); ...
0
votes
1answer
38 views

UV Texture oddity in textureUnits, openscenegraph

I am having issues with textures. I have the model open as a .osg so I will refer to it here as such here. I have one texture in textureUnit 0 which acts as a base texture. Then I have a second ...
0
votes
1answer
30 views

Linking to open scene graph statically

Is there a way to link to the open scene graph libraries statically? I compiled osg on windows 7, and it has both static and dlls, but I want to link statically so I don't have to rely on the dlls. ...
0
votes
1answer
102 views

OpenScenegraph: Texture Mapping Quad

I am trying to do texture map a quad geometry object generated by createTexturedQuadGeometry with a texture that I load from an image. I then add this drawable to a node, add that node to root and ...
0
votes
0answers
23 views

open scene graph 2.8.5

I can't debug open scene graph 2.8.5 library on visual stdio 2010 because of this error the compiler can't find this file All_Build but when I build ALL_Build alone the build successes what can I ...
-1
votes
1answer
37 views

open scene graph

while I was building the open scene graph 2.8.5 library on visual stdio 2010 the build failed because of these two errors and I can't deal with them , Error 192 error LNK1104: cannot open file ...
0
votes
1answer
46 views

Why model->asGeode(); Returns NULL?

I'm studying the OpenSceneGraph these days: // Assumes the Cessna's root node is a group node. osg::ref_ptr<osg::Node> model = osgDB::readNodeFile("cessna.osg"); osg::Group* convModel1 = ...
0
votes
1answer
53 views

translation data from ARtoolkit marker

How would you obtain the translational data from a marker using ARToolKit? I know that ARToolkit can give you the transformation matrix, but I'm having difficulty getting the translational movement. ...
1
vote
2answers
138 views

OSG: Get transform matrix from a node

First af all i have to apologize for my english. I'm working on an application where we have to know at each moment the attributes of each node (position, rotation...), so I thought about taking from ...
2
votes
1answer
65 views

Can OpenSceneGraph use less bytes for RGB colors?

I'm loading a large coloured point cloud into OpenSceneGraph using a Vec4Array for per vertex for colors. This is very memory inefficient, requiring 16 bytes of color information per vertex where I'd ...
0
votes
1answer
143 views

How to build a Head Up Display in OpenSceneGraph that resizes depending on the screen's resolution?

I'm pretty new to OpenSceneGraph and I have the following problem: I'm trying to build a 2D Head Up Display out of several images, so that it can resize depending on the screen's resolution. That ...
0
votes
1answer
47 views

installing openscenegraph with plugins

I'm having trouble installing openscenegraph with vrml plugins Can anyone provide some suggestions? I'm working on Snow Leopard, and I downloaded the latest OpenVRML 0.18, and OpenSceneGraph 3.0.1 ...
0
votes
2answers
84 views

“Include can't be found”, how to fix it?

I am developing using OpenSceneGraph. I installed it from a user-runnable installer. When I try to compile an application using OpenSceneGraph, I have this error : Lexical or preprocessor error : ...
2
votes
1answer
188 views

Generic picking solution for 3D scenes with vertex-shader-based geometry deformation applied

I'm trying to implement a navigation technique for 3D scenes (in OpenSceneGraph with OpenGL). Among other things the user should be able to click on an scene object on the screen to move towards it. ...
0
votes
2answers
203 views

Build & Install OpenSceneGraph-3.1.3 give me a No WindowSystemInterface error?

I am trying to install the latest SVN Update OpenSceneGraph-3.1.4 on Mac OS X Mountain Lion. Do I need to install a specific WindowSystemInterface ? $ osgviewer cow.osg ...
0
votes
1answer
101 views

OpenSceneGraph can't start because osg80-osgd.dll is missing

Would appreciate some help finally tackling this problem in Visual 2010. I am trying to run a sample project that should run fine, only I get an error popup with the message The program can't start ...
0
votes
2answers
134 views

Osgviewer cow does not view a cow?

I installed OpenSceneGraph 3.0.1using MacPorts. I've tried osgversion -> OpenSceneGraph Library 3.0.1. I downloaded the OpenSceneGraph-Data. Everything seems working well than osgviewer cow.osg ...
0
votes
1answer
88 views

correctly linking osg/openthreads

I'm having trouble getting OSG/OpenThreads to work in a simple sample application. That's what my command looks like: g++ bAuto.o -o bAuto -lGL -lGLU -lstdc++ -losgSim -losgText -losgGA -losgParticle ...
0
votes
1answer
377 views

OpenSceneGraph, HUDs, & Textured Qt Widget Problems

So I have program which is a Qt App. I have some basic Qt GUI on the outside but then I have a Qt widget that makes use of OpenSceneGraph to render a 3D scene. To make things more complicated inside ...
0
votes
0answers
230 views

How to render the depth buffer into an image in OSG?

I'm implementing a special navigation technique in OpenSceneGraph. For that purpose I need to know the position and the distance to the camera of the fragment which is closest to the camera. My plan ...
5
votes
2answers
253 views

C++ OpenSceneGraph Change Camera Eye Height

Writing a small openscenegraph application, and in need of a way to change the Camera height. Essentially, the eye is looking straight at a Ball in the space. What I want to do is be able to lower the ...
1
vote
2answers
258 views

Working OpenSceneGraph bindings for Python?

I'm building a rendering engine in Python for fun. I need to load 3D scenes. Any standard modern format like DAE, 3DS, or MAX would work: I can convert my files easily between standard formats. ...
0
votes
0answers
35 views

WorldToolKit to OpenScengraph mapping

I need to re-write old WTK code in OpenScenegraph and I would appreciate some help making this happen. I currently have the following code to re-write using OpenSceneGraph methods but I am currently ...
2
votes
0answers
115 views

OpenSceneGraph 3D Programming Toggle Mouse Sensitivity

I have a requirement to put code in to toggle the sensitivity of the mouse - increase or decrease the speed of my Camera’s walk speed in the scene. Currently, I have an eventhandler wired up to ...
0
votes
0answers
50 views

How can I resize a osg::Canvas?

So, I have a class MessageWidget whose header looks like this: class MessageWidget : public osgWidget::Canvas, public immi::interfaces::MenuCallback Inside this class, there's a method which ...
4
votes
1answer
1k views

How To Get File In Assets From Android NDK

I'm trying to access an image file in the assets folder from the native side. Now I can successfully search through the assets folder and its subdirectories locating the particular file that I am ...
0
votes
1answer
120 views

OpenSceneGraph FirstPerson Walking Camera

I am new to OpenSceneGraph and would appreciate help figuring out which of the existing CameraManipulator classes, or even any out there, I would need to use for Walking/Running/Jogging simulations. ...
0
votes
0answers
110 views

Custom 3D Graphics over Video

I wrote much but found nothing to implement following: overlay a video with custom graphics. Here a picture to imagine what i try to do ...
1
vote
2answers
244 views

OpenSceneGraph C++ Access Violation reading location 0x00421000

Working with OpenSceneGraph, and I keep running into this violation issue that I would appreciate some help with. The problem is with the particular line below which happens to be the first in my main ...
2
votes
1answer
193 views

MiniMap/PIP for OpenSceneGraph

So I am trying to create a mini-map/PIP. I have an existing program with scene that runs inside a Qt Widget. I have a class, NetworkViewer, which extends CompositeViewer. In NetworkViewer's ...
2
votes
1answer
161 views

OSG +QT switching to full screen and back

I am integrating a single osgQt::GLWidget in a Qframe and using the pattern here: http://trac.osgeo.org/ossim/browser/trunk/ossimPlanetQt/src/gui/ossimPlanetQtMainWindow.cpp to switch between ...
0
votes
1answer
140 views

Creating a dynamic sphere in OSG

I want to create a dynamic sphere in OSG which would be created(moved) by the mouse left click at that location (center) and with a dynamic radius of the mouse pointer current location's distance to ...
1
vote
1answer
186 views

The type in a dynamic_cast must be a pointer or reference to a complete class type, or void *

I am hoping there is someone out there who understands why the code below fails. I am trying to get an instance of PositionAttitudeTransform (Openscenegraph class) from an osg::Node* node object. But ...
2
votes
1answer
123 views

Ignore keyboard presses on Qt inside OSG

I’m newbie with Qt, and experiencing one problem I cannot deal with for, like, a month. The situation is like this: I’ve OpenSceneGraph project (which is OpenGL) and trying to make Qt interface inside ...
1
vote
1answer
243 views

What is The Correct View Matrix For The HUD Camera?

I'm using OpenSceneGraph in Android with GLES2. I have two cameras: one for the scene and the other for the HUD. The scene camera is the main camera in my osgViewer. My trouble is with the HUD's ...

1 2 3