Hi John,
Ther a number of different ways to get stats on scene graphs:
The onscreen stats handling provides a range of options that may be
sufficient - run osgviewer on your model and press 's' a couple of
times to see the various different stats availble.
One can also convert model to .osg or .osgt files and the browse
through them in an editor to see the scene graph structure and the
sizes of the various arrays.
One can also use the osgUtil::Statsitics helper class that can be used
to tot up the various vertex and primitive dat stats from drawables in
your scene graph, you can use this in conjunction with custom
NodeVisitor to accumulate the stats for you whole scene graph. Do a
search through the OSG code base to see how the StatsHandler/Statitics
class are used.
Robert.