osgEarth 2.1.1

/home/cube/sources/osgearth/src/osgEarth/ImageToHeightFieldConverter

Go to the documentation of this file.
00001 /* -*-c++-*- */
00002 /* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
00003 * Copyright 2008-2010 Pelican Mapping
00004 * http://osgearth.org
00005 *
00006 * osgEarth is free software; you can redistribute it and/or modify
00007 * it under the terms of the GNU Lesser General Public License as published by
00008 * the Free Software Foundation; either version 2 of the License, or
00009 * (at your option) any later version.
00010 *
00011 * This program is distributed in the hope that it will be useful,
00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 * GNU Lesser General Public License for more details.
00015 *
00016 * You should have received a copy of the GNU Lesser General Public License
00017 * along with this program.  If not, see <http://www.gnu.org/licenses/>
00018 */
00019 
00020 #ifndef OSGEARTH_IMAGE_TO_HEIGHTFIELD_CONVERTER
00021 #define OSGEARTH_IMAGE_TO_HEIGHTFIELD_CONVERTER 1
00022 
00023 #include <osgEarth/Export>
00024 
00025 #include <osg/Image>
00026 #include <osg/Shape>
00027 
00028 namespace osgEarth
00029 {
00033   class OSGEARTH_EXPORT ImageToHeightFieldConverter
00034   {
00035   public:
00036     ImageToHeightFieldConverter();
00037 
00043     void setRemoveNoDataValues( bool value, float fallback =0.0f );
00044 
00045   public:
00049     osg::HeightField* convert(const osg::Image* image ); 
00050     osg::HeightField* convert(const osg::Image* image, float scaleFactor ); 
00051 
00055     osg::Image* convert(const osg::HeightField* hf, int pixelSize = 32);
00056 
00057   private:
00058     osg::HeightField* convert16(const osg::Image* image ) const; 
00059     osg::HeightField* convert32(const osg::Image* image ) const; 
00060 
00061     osg::Image* convert16(const osg::HeightField* hf ) const;
00062     osg::Image* convert32(const osg::HeightField* hf ) const;
00063 
00064     bool  _replace_nodata;
00065     float _nodata_value;
00066   };
00067 }
00068 
00069 #endif //OSGEARTH_IMAGE_TO_HEIGHTFIELD_CONVERTER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines