Hi David, I've now had a chance to look at this problem and have been able to reproduce on a series of dicom files I have here. This osgvolume feature used to work before the transition to osgVolume, and relied upon the update traversal triggering an update of the ImageSequence. I've briefly looked into why osgVolume isn't calling the image sequence updating and it looks down to the decoupled way that the internal volume scene graph is managed - because it's decoupled from the main scene graph it doesn't recieve an update traversal like a normal scene graph.
I have to head out right now, but by on my return I'll fix osgVolume::VolumeTile so that it passes on updates to the ImageLayer which contains the ImageSequence. I'll will fix this prior to the OSG-2.8.0 release. Robert. On Tue, Feb 10, 2009 at 10:43 AM, David Michéa <[email protected]> wrote: > Same behavior if I add the image filenames via the commandline : only the > first image is displayed. (images written on disk in .dds format) > > note: the image has not the same look when I load it from the .dds file in > which I had written rather than creating it directly. > > David. > > > > Robert Osfield wrote: >> Hi David, >> >> I'm afraid I have testing the ImageSequence/osgvolume code paths >> recently. What happens if you just add the image filenames via the >> commandline? >> >> Robert. >> >> On Mon, Feb 9, 2009 at 3:12 PM, David MichÃ(c)a <> wrote: >> >> > Hi, >> > >> > I would like to use the new features osgvolume to visualize scalar 4D data >> > (3D+time) >> > >> > I started by using the example osgvolume provided with v2.8.0, I have just >> > added code to read my data: >> > >> > ... >> > >> > while (...) >> > { osg::ref_ptr<osg::Image> my_3d_image = new osg::Image (); >> > ... >> > / / Read data from disk and fill my_3d_image >> > ... >> > images.push_back (my_3d_image.get()); >> > } >> > >> > ... >> > >> > Unfortunately, although the sequence image is actually created: "Creating >> > sequence of 10 volumes." I just can visualize the first image on screen, >> > not the sequence. >> > >> > Do I forget something? I'm fairly new, so please excuse my question if it >> > is stupid. >> > >> > Thx a lot. >> > >> > ------------------ >> > Read this topic online here: >> > http://osgforum.tevs.eu/viewtopic.php?p=6298#6298 >> > >> > >> > >> > >> > >> > _______________________________________________ >> > osg-users mailing list >> > >> > http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org >> > >> > >> _______________________________________________ >> osg-users mailing list >> >> http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org >> >> ------------------ >> Post generated by Mail2Forum > > > ------------------ > Read this topic online here: > http://osgforum.tevs.eu/viewtopic.php?p=6398#6398 > > > > > > _______________________________________________ > osg-users mailing list > [email protected] > http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org > _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

