/usr/include/ossim/imaging/ossimTiffOverviewBuilder.h is in libossim-dev 1.7.21-3ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | //*******************************************************************
//
// License: LGPL
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: David Burken
//
// Description:
//
// Contains class declaration for TiffOverviewBuilder.
//
//*******************************************************************
// $Id: ossimTiffOverviewBuilder.h 15367 2009-09-04 13:32:21Z dburken $
#ifndef ossimTiffOverviewBuilder_HEADER
#define ossimTiffOverviewBuilder_HEADER
#include <vector>
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimFilename.h>
#include <ossim/imaging/ossimOverviewBuilderBase.h>
#include <ossim/imaging/ossimFilterResampler.h>
#include <tiffio.h>
class ossimImageHandler;
class ossimFilename;
class ossimConnectableObject;
class OSSIM_DLL ossimTiffOverviewBuilder
:
public ossimOverviewBuilderBase
{
public:
enum
{
DEFAULT_COMPRESS_QUALITY=75
};
/** default constructor */
ossimTiffOverviewBuilder();
/** virtual destructor */
virtual ~ossimTiffOverviewBuilder();
/**
* Supports BOX or NEAREST NEIGHBOR. When indexed you should probably use nearest neighbor
*/
void setResampleType(ossimFilterResampler::ossimFilterResamplerType resampleType);
/**
* Builds overview file and sets "theOutputFile" to that of
* the overview_file.
*
* @param overview_file The overview file name to output.
*
* @param copy_all If set to true the entire image will be
* copied. This can be used to convert an image to a tiled tif.
*
* @return trueon success, false on error.
*/
bool buildOverview(const ossimFilename& overview_file,
bool copy_all=false);
/**
* Calls buildOverview. This method uses "theOutputFile" for the file
* name.
*
* If the copy_all flag is set the entire image will be copied. This can
* be used to convert an image to a tiled tif.
*
* @return true on success, false on error.
*
* @note If setOutputFile was not called the output name will be derived
* from the image name. If image was "foo.tif" the overview file will
* be "foo.ovr".
*/
virtual bool execute();
/**
* Sets the compression type to use when building overviews.
*
* @param compression_type Current supported types:
* - COMPRESSION_JPEG
* - COMPRESSION_LZW
* - COMPRESSION_DEFLATE
* - COMPRESSION_PACKBITS
* - COMPRESSION_NONE (default)
*/
void setCompressionType(ossim_uint16 compression_type);
/**
* Sets the compression quality for use when using a compression type
* of COMPRESSION_JPEG.
*
* @param quality Range 1 to 100 with 100 being best quality.
*/
void setJpegCompressionQuality(ossim_int32 quality);
/**
* @brief Method to return copy all flag.
* @return The copy all flag. If true all data will be written to the
* overview including R0.
*/
bool getCopyAllFlag() const;
/**
* @brief Sets theCopyAllFlag.
* @param flag The flag. If true all data will be written to the
* overview including R0.
*/
void setCopyAllFlag(bool flag);
/**
* @return ossimObject* to this object.
*/
virtual ossimObject* getObject();
/**
* @return const ossimObject* to this object.
*/
virtual const ossimObject* getObject() const;
/**
* @return true if input is an image handler.
*/
virtual bool canConnectMyInputTo(ossim_int32 index,
const ossimConnectableObject* obj) const;
/**
* @brief Sets the input to the builder. Satisfies pure virtual from
* ossimOverviewBuilderInterface.
*
* @param imageSource The input to the builder.
*
* @param bool youOwnItFlag If true this obect will delete imageSource
* at destruction.
*
* @return True on successful initializion, false on error.
*/
virtual bool setInputSource(ossimImageHandler* imageSource,
bool youOwnItFlag);
/**
* @brief Sets the output filename.
* Satisfies pure virtual from ossimOverviewBuilderInterface.
* @param file The output file name.
*/
virtual void setOutputFile(const ossimFilename& file);
/**
* @brief Gets the output file name. (pure virtual)
*
* @return The output file name or ossimFilename::NIL if it was not set
* yet and the image handle has not been initialized.
*
* @note This is non-const as a call to this may force initialization of
* overview builder output file name if the it was not set already.
*
* @note This will return ossimFilename::NIL unless one of was called,
* setInputSource or setOutputFile.
*/
virtual ossimFilename getOutputFile() const;
void setOutputTileSize(const ossimIpt& tileSize);
/**
* @brief Sets the overview output type.
*
* Satisfies pure virtual from ossimOverviewBuilderInterface.
*
* Currently handled types are:
* "ossim_tiff_nearest" and "ossim_tiff_box"
*
* @param type This should be the string representing the type. This method
* will do nothing if type is not handled and return false.
*
* @return true if type is handled, false if not.
*/
virtual bool setOverviewType(const ossimString& type);
/**
* @brief Gets the overview type.
* Satisfies pure virtual from ossimOverviewBuilderInterface.
* @return The overview output type as a string.
*/
virtual ossimString getOverviewType() const;
/**
* @brief Method to populate class supported types.
* Satisfies pure virtual from ossimOverviewBuilderInterface.
* @param typeList List of ossimStrings to add to.
*/
virtual void getTypeNameList(std::vector<ossimString>& typeList)const;
/**
* @biref Method to set properties.
* @param property Property to set.
*
* @note Currently supported property:
* name=levels, value should be list of levels separated by a comma with
* no spaces. Example: "2,4,8,16,32,64"
*/
virtual void setProperty(ossimRefPtr<ossimProperty> property);
/**
* @brief Method to populate the list of property names.
* @param propertyNames List to populate. This does not clear the list
* just adds to it.
*/
virtual void getPropertyNames(std::vector<ossimString>& propertyNames)const;
private:
/**
* Copy the full resolution image data to the output tif image.
*/
bool writeR0(TIFF* tif);
/**
* Write reduced resolution data set to the tif file.
*/
bool writeRn(ossimImageHandler* imageHandler,
TIFF* tif,
ossim_uint32 resLevel);
/**
* Set the tiff tags for the appropriate resLevel. Level zero is the
* full resolution image.
*
* @param tif Pointer to the tif file.
* @param outputRect The dimensions (zero based) of res set.
* @param rrds_level The current reduced res level.
*/
bool setTags(TIFF* tif,
const ossimIrect& outputRect,
ossim_int32 resLevel) const;
TIFF* openTiff(const ossimString& filename,
const ossimString& openMode);
void closeTiff(TIFF* tif);
// Disallow these...
ossimTiffOverviewBuilder(const ossimTiffOverviewBuilder& source);
ossimTiffOverviewBuilder& operator=(const ossimTiffOverviewBuilder& rhs);
ossimImageHandler* theImageHandler;
bool theOwnsImageHandlerFlag;
ossimFilename theOutputFile;
std::vector<ossim_uint8> theNullDataBuffer;
ossim_int32 theBytesPerPixel;
ossim_int32 theBitsPerSample;
ossim_int32 theTileWidth;
ossim_int32 theTileHeight;
ossim_int32 theTileSizeInBytes;
ossim_int32 theSampleFormat;
ossim_int32 theCurrentTiffDir;
ossim_uint16 theTiffCompressType;
ossim_int32 theJpegCompressQuality;
ossimFilterResampler::ossimFilterResamplerType theResampleType;
std::vector<double> theNullPixelValues;
bool theCopyAllFlag;
bool theOutputTileSizeSetFlag;
TYPE_DATA
};
#endif
|