OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
#include <ossimOverviewBuilderBase.h>
Public Member Functions | |
ossimOverviewBuilderBase () | |
default constructor More... | |
virtual bool | setOutputWriter (ossimImageFileWriter *outputWriter) |
Sets an optional file writer to the builder. More... | |
virtual bool | setInputSource (ossimImageHandler *imageSource) |
Sets the input to the builder. More... | |
virtual void | setOutputFile (const ossimFilename &file)=0 |
Sets the output file name. More... | |
virtual ossimFilename | getOutputFile () const =0 |
Gets the output file name. More... | |
virtual bool | setOverviewType (const ossimString &type)=0 |
Sets the overview output type. More... | |
virtual ossimString | getOverviewType () const =0 |
Gets the overview type. More... | |
virtual bool | hasOverviewType (const ossimString &type) const |
Method to check if builder can handle type. More... | |
virtual void | getTypeNameList (std::vector< ossimString > &typeList) const =0 |
Method to populate class supported types. More... | |
virtual ossim_uint32 | getOverviewStopDimension () const |
Get the overview stop dimension. More... | |
virtual void | setOverviewStopDimension (ossim_uint32 dim) |
Sets the overview stop dimension. More... | |
ossimHistogramMode | getHistogramMode () const |
Gets the histogram accumulation mode. More... | |
void | setHistogramMode (ossimHistogramMode mode) |
Sets the histogram accumulation mode. More... | |
virtual bool | execute ()=0 |
Builds the overviews. More... | |
virtual void | finalize () |
Finalize method. More... | |
void | setBitMaskSpec (const ossimKeywordlist &bit_mask_spec) |
Specifies parameters (in KWL) for generation of an alpha (bit) mask such that any full or partial null pixels will be masked out. More... | |
void | setScanForMinMax (bool flag) |
Turn on/off scan for min max flag. More... | |
bool | getScanForMinMax () const |
void | setScanForMinMaxNull (bool flag) |
Turn on/off scan for min, max, null flag. More... | |
bool | getScanForMinMaxNull () const |
![]() | |
ossimSource (ossimObject *owner=0) | |
ossimSource (ossimObject *owner, ossim_uint32 inputListSize, ossim_uint32 outputListSize, bool inputListIsFixedFlag=true, bool outputListIsFixedFlag=true) | |
virtual | ~ossimSource () |
virtual bool | isSourceEnabled () const |
virtual void | enableSource () |
virtual void | disableSource () |
virtual bool | getEnableFlag () const |
virtual void | setEnableFlag (bool flag) |
virtual bool | isInitialized () const |
virtual void | setInitializedFlag (bool flag) |
virtual void | initialize () |
virtual void | setProperty (ossimRefPtr< ossimProperty > property) |
virtual ossimRefPtr< ossimProperty > | getProperty (const ossimString &name) const |
virtual void | getPropertyNames (std::vector< ossimString > &propertyNames) const |
virtual bool | saveState (ossimKeywordlist &kwl, const char *prefix=0) const |
virtual bool | loadState (const ossimKeywordlist &kwl, const char *prefix=0) |
virtual std::ostream & | print (std::ostream &out) const |
Outputs theErrorStatus as an ossimErrorCode and an ossimString. More... | |
![]() | |
ossimConnectableObject (ossimObject *owner=0) | |
Base constructor of this object. More... | |
ossimConnectableObject (ossimObject *owner, ossim_int32 inputListSize, ossim_int32 outputListSize, bool inputListIsFixedFlag=true, bool outputListIsFixedFlag=true) | |
virtual | ~ossimConnectableObject () |
void | setId (const ossimId &id) |
All connectable objects will have id's. More... | |
const ossimId & | getId () const |
Will allow us to get this object's id. More... | |
const ossimObject * | getOwner () const |
Fetches the current owner, most likely a container but not limited to one. More... | |
virtual void | changeOwner (ossimObject *owner) |
Permits changing the object's owner. More... | |
virtual void | setDescription (const ossimString &description) |
virtual ossimString | getDescription () const |
virtual bool | isConnected (ossimConnectableObjectDirectionType direction=CONNECTABLE_DIRECTION_INPUT) const |
will check the direction specified to see if all slots are full. More... | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findConnectableObject(const ossimId &id)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findObjectOfType(RTTItypeid typeId, ossimConnectableObjectDirectionType directionType, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findObjectOfType(const ossimString &obj, ossimConnectableObjectDirectionType directionType, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findInputObjectOfType(const ossimString &className)) | |
virtual ossim_int32 | findInputIndex (const ossimConnectableObject *object) |
Return a valid index of the input list if the passed in object is found else return -1. More... | |
virtual ossim_int32 | findInputIndex (const ossimId &id) |
Return a valid index of the input list if the passed id is found else return -1. More... | |
virtual ossim_int32 | findOutputIndex (const ossimConnectableObject *object) |
Return a valid index of the output list if the passed in object is found else return -1. More... | |
virtual ossim_int32 | findOutputIndex (const ossimId &id) |
Return a valid index of the output list if the passed in object is found else return -1. More... | |
virtual ossim_int32 | getMyInputIndexToConnectTo (ossimConnectableObject *object) const |
Should return the first available index to connect to. More... | |
virtual ossim_int32 | getMyOutputIndexToConnectTo (ossimConnectableObject *object) const |
Should return the first available index to connect to. More... | |
virtual bool | canConnectMyInputTo (ossim_int32 myInputIndex, const ossimConnectableObject *object) const =0 |
required to be overriden by derived classes More... | |
virtual bool | canConnectMyOutputTo (ossim_int32 myOutputIndex, const ossimConnectableObject *object) const |
default implementation is to allow anyone to connect to us. More... | |
virtual void | disconnect (ossimConnectableObject *object=0) |
Will disconnect the object passed in. More... | |
virtual void | disconnect (const ossimId &id) |
Will disconnect the object passed in. More... | |
virtual ossimRefPtr< ossimConnectableObject > | disconnectMyInput (ossim_int32 inputIndex, bool disconnectOutputFlag=true, bool createEventFlag=true) |
Will disconnect the object at the given input index and generate a connection event. More... | |
virtual void | disconnectMyInput (ossimConnectableObject *input, bool disconnectOutputFlag=true, bool createEventFlag=true) |
Finds the index of the passed in input and calls disconnectMyInput(inputIndex, disconnectOutputFlag, createEventFlag);. More... | |
virtual void | disconnectMyInputs (ConnectableObjectList &inputList, bool disconnectOutputFlag=true, bool createEventFlag=true) |
virtual ossimRefPtr< ossimConnectableObject > | disconnectMyOutput (ossim_int32 outputIndex, bool disconnectInputFlag=true, bool createEventFlag=true) |
Will disconnect the object at the given output index and generate a connection event. More... | |
virtual void | disconnectMyOutput (ossimConnectableObject *output, bool disconnectInputFlag=true, bool createEventFlag=true) |
Will disconnect the output object. More... | |
virtual void | disconnectMyOutputs (ConnectableObjectList &outputList, bool disconnectOutputFlag=true, bool createEventFlag=true) |
virtual void | disconnectAllInputs () |
Will disconnect all of the input objects. More... | |
virtual void | disconnectAllOutputs () |
Will disconnect all of the output objects. More... | |
virtual ossim_int32 | connectMyInputTo (ossimConnectableObject *inputObject, bool makeOutputConnection=true, bool createEventFlag=true) |
Will try to connect this objects input to the passed in object. More... | |
virtual ossim_int32 | connectMyInputTo (ossim_int32 inputIndex, ossimConnectableObject *inputObject, bool makeOutputConnection=true, bool createEventFlag=true) |
Will connect the specified input to the passed in object. More... | |
virtual bool | connectMyInputTo (ConnectableObjectList &inputList, bool makeOutputConnection=true, bool createEventFlag=true) |
virtual ossim_int32 | connectMyOutputTo (ossimConnectableObject *outputObject, bool makeInputConnection=true, bool createEventFlag=true) |
Will try to connect this objects output to the passed in object. More... | |
virtual bool | connectMyOutputTo (ConnectableObjectList &outputList, bool makeInputConnection=true, bool createEventFlag=true) |
virtual bool | connectInputList (ConnectableObjectList &inputList) |
Will disconnect itself from all inputs and reset to the passed in input list. More... | |
virtual bool | connectOutputList (ConnectableObjectList &outputList) |
Will disconnect itself from all outputs and reset to the passed in output list. More... | |
virtual ossim_uint32 | getNumberOfInputs () const |
Returns the number of input objects. More... | |
virtual ossim_uint32 | getNumberOfOutputs () const |
Return the number of output objects. More... | |
ossimConnectableObject * | getInput (ossim_uint32 index=0) |
returns the object at the specified index. More... | |
const ossimConnectableObject * | getInput (ossim_uint32 index=0) const |
returns the object at the specified index. More... | |
ossimConnectableObject * | getOutput (ossim_uint32 index=0) |
returns the object at the specified index. More... | |
const ossimConnectableObject * | getOutput (ossim_uint32 index=0) const |
returns the object at the specified index. More... | |
virtual void | setNumberOfInputs (ossim_int32 numberOfInputs) |
Will set the number of inputs. More... | |
virtual bool | getInputListIsFixedFlag () const |
virtual bool | getOutputListIsFixedFlag () const |
virtual void | setNumberOfOutputs (ossim_int32 numberOfInputs) |
Will set the number of outputs. More... | |
const ConnectableObjectList & | getInputList () const |
const ConnectableObjectList & | getOutputList () const |
ConnectableObjectList & | getInputList () |
ConnectableObjectList & | getOutputList () |
OSSIM_DEPRECATE_METHOD (virtual void findAllObjectsOfType(ConnectableObjectList &result, const RTTItypeid &typeInfo, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual void findAllObjectsOfType(ConnectableObjectList &result, const ossimString &className, bool recurse=true)) | |
virtual void | propagateEventToOutputs (ossimEvent &event) |
virtual void | propagateEventToInputs (ossimEvent &event) |
virtual void | setProperty (const ossimString &name, const ossimString &value) |
virtual ossim_uint32 | saveStateOfAllInputs (ossimKeywordlist &kwl, bool saveThisStateFlag=true, ossim_uint32 objectIndex=1, const char *prefix=0) const |
Save the state of all inputs to a keyword list. More... | |
virtual bool | fillContainer (ossimConnectableContainer &container) |
Inserts this object and all of its children and inputs into the container provided. More... | |
bool | moveInputUp (const ossimId &id) |
Moves the input connection matching id up one in the connection list. More... | |
bool | moveInputDown (const ossimId &id) |
Moves the input connection matching id down one in the connection list. More... | |
bool | moveInputToTop (const ossimId &id) |
Moves the input connection matching id to the top of the connection list. More... | |
bool | moveInputToBottom (const ossimId &id) |
Moves the input connection matching id to the bottom of the connection list. More... | |
virtual void | accept (ossimVisitor &visitor) |
We will add a visitor interface for all connectable objects. More... | |
![]() | |
ossimObject () | |
virtual | ~ossimObject () |
virtual ossimObject * | dup () const |
virtual ossimString | getShortName () const |
virtual ossimString | getLongName () const |
virtual ossimString | getClassName () const |
virtual RTTItypeid | getType () const |
virtual bool | canCastTo (ossimObject *obj) const |
virtual bool | canCastTo (const RTTItypeid &id) const |
virtual bool | canCastTo (const ossimString &parentClassName) const |
virtual bool | isEqualTo (const ossimObject &obj, ossimCompareType compareType=OSSIM_COMPARE_FULL) const |
![]() | |
ossimReferenced () | |
ossimReferenced (const ossimReferenced &) | |
ossimReferenced & | operator= (const ossimReferenced &) |
void | ref () const |
increment the reference count by one, indicating that this object has another pointer which is referencing it. More... | |
void | unref () const |
decrement the reference count by one, indicating that a pointer to this object is referencing it. More... | |
void | unref_nodelete () const |
decrement the reference count by one, indicating that a pointer to this object is referencing it. More... | |
int | referenceCount () const |
![]() | |
ossimListenerManager () | |
virtual | ~ossimListenerManager () |
virtual void | fireEvent (ossimEvent &event) |
virtual bool | addListener (ossimListener *listener) |
virtual bool | removeListener (ossimListener *listener) |
virtual bool | findListener (ossimListener *listener) |
![]() | |
ossimPropertyInterface () | |
virtual | ~ossimPropertyInterface () |
virtual ossimString | getPropertyValueAsString (const ossimString &name) const |
void | getPropertyList (std::vector< ossimRefPtr< ossimProperty > > &propertyList) const |
void | setProperties (std::vector< ossimRefPtr< ossimProperty > > &propertyList) |
![]() | |
ossimErrorStatusInterface () | |
virtual | ~ossimErrorStatusInterface () |
virtual ossimErrorCode | getErrorStatus () const |
virtual ossimString | getErrorStatusString () const |
virtual void | setErrorStatus (ossimErrorCode error_status) const |
virtual void | setErrorStatus () const |
virtual void | clearErrorStatus () const |
bool | hasError () const |
![]() | |
ossimProcessInterface () | |
virtual | ~ossimProcessInterface () |
virtual ossimObject * | getObject ()=0 |
virtual const ossimObject * | getObject () const =0 |
virtual void | abort () |
bool | needsAborting () const |
bool | isAbortRequested () const |
bool | isAborted () const |
bool | isExecuting () const |
ossimProcessStatus | getProcessStatus () const |
virtual void | setProcessStatus (ossimProcessStatus processStatus) |
virtual double | getPercentComplete () const |
virtual void | setPercentComplete (double percentComplete) |
virtual ossimListenerManager * | getManager () |
void | enableEvents () |
void | disableEvents () |
void | setCurrentMessage (const ossimString &message) |
virtual std::ostream & | print (std::ostream &out) const |
![]() | |
ossimConnectableObjectListener () | |
virtual | ~ossimConnectableObjectListener () |
virtual void | processEvent (ossimEvent &event) |
ProcessEvent. More... | |
virtual void | objectDestructingEvent (ossimObjectDestructingEvent &) |
virtual void | connectionEvent (ossimConnectionEvent &) |
virtual void | disconnectInputEvent (ossimConnectionEvent &) |
virtual void | disconnectOutputEvent (ossimConnectionEvent &) |
virtual void | connectInputEvent (ossimConnectionEvent &) |
virtual void | connectOutputEvent (ossimConnectionEvent &) |
virtual void | propertyEvent (ossimPropertyEvent &) |
virtual void | addObjectEvent (ossimContainerEvent &) |
virtual void | removeObjectEvent (ossimContainerEvent &) |
virtual void | containerEvent (ossimContainerEvent &) |
virtual void | refreshEvent (ossimRefreshEvent &) |
![]() | |
ossimListener () | |
virtual | ~ossimListener () |
void | enableListener () |
void | disableListener () |
void | setListenerEnableFlag (bool flag) |
bool | isListenerEnabled () const |
bool | getListenerEnableFlag () const |
Protected Member Functions | |
virtual | ~ossimOverviewBuilderBase () |
virtual destructor More... | |
ossim_uint32 | getRequiredResLevels (const ossimImageHandler *ih) const |
Gets the required number of res levels. More... | |
void | initializePreferenceSettings () |
Initializes preference settings. More... | |
void | initializeScanOptions () |
Checks scalar type and turns on scanning for min, max, nulls if needed. More... | |
![]() | |
ossimSource (const ossimSource &rhs) | |
const ossimSource & | operator= (const ossimSource &rhs) |
![]() | |
ossimConnectableObject * | findObjectOfType (ConnectableObjectList *connectableList, ossimVisitor &visitor) |
![]() | |
virtual | ~ossimReferenced () |
![]() | |
ossimListenerManager (const ossimListenerManager &rhs) | |
Additional Inherited Members | |
![]() | |
enum | ossimConnectableObjectDirectionType { CONNECTABLE_DIRECTION_NONE = 0, CONNECTABLE_DIRECTION_INPUT = 1, CONNECTABLE_DIRECTION_OUTPUT = 2 } |
typedef std::vector< ossimRefPtr< ossimConnectableObject > > | ConnectableObjectList |
![]() | |
enum | ossimProcessStatus { PROCESS_STATUS_UNKNOWN = 0, PROCESS_STATUS_EXECUTING = 1, PROCESS_STATUS_ABORTED = 2, PROCESS_STATUS_ABORT_REQUEST = 3, PROCESS_STATUS_NOT_EXECUTING = 4 } |
Definition at line 30 of file ossimOverviewBuilderBase.h.
ossimOverviewBuilderBase::ossimOverviewBuilderBase | ( | ) |
default constructor
|
protectedvirtual |
virtual destructor
Definition at line 42 of file ossimOverviewBuilderBase.cpp.
References m_imageHandler, m_maskFilter, and m_maskWriter.
|
pure virtual |
Builds the overviews.
(pure virtual)
Implements ossimProcessInterface.
Implemented in ossimTiffOverviewBuilder, ossimGdalOverviewBuilder, and ossimKakaduNitfOverviewBuilder.
|
virtual |
Finalize method.
Should be called at end of execute.
This implementation will reset the the output band list if the source image handler is a band selector.
Definition at line 142 of file ossimOverviewBuilderBase.cpp.
References ossimImageHandler::isBandSelector(), m_imageHandler, m_originalBandList, ossimImageHandler::setOutputBandList(), and ossimRefPtr< T >::valid().
ossimHistogramMode ossimOverviewBuilderBase::getHistogramMode | ( | ) | const |
Gets the histogram accumulation mode.
Definition at line 132 of file ossimOverviewBuilderBase.cpp.
References m_histoMode.
|
pure virtual |
Gets the output file name.
(pure virtual)
Implemented in ossimTiffOverviewBuilder, ossimGdalOverviewBuilder, and ossimKakaduNitfOverviewBuilder.
|
virtual |
Get the overview stop dimension.
Definition at line 122 of file ossimOverviewBuilderBase.cpp.
References m_overviewStopDimension.
Referenced by ossimImageUtil::hasRequiredOverview().
|
pure virtual |
Gets the overview type.
(pure virtual)
Implemented in ossimTiffOverviewBuilder, ossimGdalOverviewBuilder, and ossimKakaduNitfOverviewBuilder.
|
protected |
Gets the required number of res levels.
Convenience method to get the required number of reduced resolution data sets to get to the smallest dimension of the output tile size. Note that this include r0.
ih | Pointer to the image handler. |
Definition at line 98 of file ossimOverviewBuilderBase.cpp.
References ossimImageHandler::getNumberOfLines(), ossimImageHandler::getNumberOfSamples(), and m_overviewStopDimension.
bool ossimOverviewBuilderBase::getScanForMinMax | ( | ) | const |
Definition at line 160 of file ossimOverviewBuilderBase.cpp.
References m_scanForMinMax.
bool ossimOverviewBuilderBase::getScanForMinMaxNull | ( | ) | const |
Definition at line 170 of file ossimOverviewBuilderBase.cpp.
References m_scanForMinMaxNull.
|
pure virtual |
Method to populate class supported types.
(pure virtual) Example: ossimTiffOverviewNearest ossimTiffOverviewBox
typeList | List of ossimStrings to add to. |
Implemented in ossimTiffOverviewBuilder, ossimGdalOverviewBuilder, and ossimKakaduNitfOverviewBuilder.
Referenced by ossimOverviewBuilderFactory::getTypeNameList(), ossimGdalOverviewBuilderFactory::getTypeNameList(), ossimKakaduOverviewBuilderFactory::getTypeNameList(), and hasOverviewType().
|
virtual |
Method to check if builder can handle type.
Definition at line 82 of file ossimOverviewBuilderBase.cpp.
References getTypeNameList().
Referenced by ossimOverviewBuilderFactory::createBuilder(), ossimGdalOverviewBuilderFactory::createBuilder(), and ossimKakaduOverviewBuilderFactory::createBuilder().
|
protected |
Initializes preference settings.
Currently:
1) Gets the default stop dimension.
Looks for overview_stop_dimension, then will use minimum default tile size if that is not found.
2) Set scan float data flag.
Looks for overview_builder.scan_for_min_max_null_if_float.
If true this will turn the m_scanForMinMaxNull on if the scalar type of image handler is float.
Definition at line 175 of file ossimOverviewBuilderBase.cpp.
References ossim::defaultTileSize(), ossimPreferences::findPreference(), ossimPreferences::instance(), m_overviewStopDimension, m_scanFloatData, ossimKeywordNames::OVERVIEW_STOP_DIMENSION_KW, ossimString::toBool(), ossimString::toUInt32(), ossimIpt::x, and ossimIpt::y.
|
protected |
Checks scalar type and turns on scanning for min, max, nulls if needed.
Definition at line 201 of file ossimOverviewBuilderBase.cpp.
References ossimImageSource::getOutputScalarType(), m_imageHandler, m_scanFloatData, OSSIM_FLOAT32, OSSIM_FLOAT64, setScanForMinMaxNull(), and ossimRefPtr< T >::valid().
Referenced by setInputSource().
void ossimOverviewBuilderBase::setBitMaskSpec | ( | const ossimKeywordlist & | bit_mask_spec | ) |
Specifies parameters (in KWL) for generation of an alpha (bit) mask such that any full or partial null pixels will be masked out.
A mask file will be written to the source image directory with the image file name and extension ".mask".
Definition at line 150 of file ossimOverviewBuilderBase.cpp.
References m_bitMaskSpec.
void ossimOverviewBuilderBase::setHistogramMode | ( | ossimHistogramMode | mode | ) |
Sets the histogram accumulation mode.
mode | NONE, NORMAL or FAST. |
Definition at line 137 of file ossimOverviewBuilderBase.cpp.
References m_histoMode.
|
virtual |
Sets the input to the builder.
imageSource | The input to the builder. |
Reimplemented in ossimTiffOverviewBuilder, and ossimGdalOverviewBuilder.
Definition at line 54 of file ossimOverviewBuilderBase.cpp.
References ossimErrorStatusInterface::getErrorStatus(), ossimImageSource::getOutputBandList(), initializeScanOptions(), ossimImageHandler::isBandSelector(), m_imageHandler, m_originalBandList, ossimErrorCodes::OSSIM_OK, and ossimImageHandler::setOutputToInputBandList().
|
pure virtual |
Sets the output file name.
(pure virtual) file This will be the output file name like foo.ovr
Implemented in ossimTiffOverviewBuilder, ossimGdalOverviewBuilder, and ossimKakaduNitfOverviewBuilder.
|
virtual |
Sets an optional file writer to the builder.
Currently used by the virtual overview builder.
outputWriter | The file writer of the builder. |
Definition at line 49 of file ossimOverviewBuilderBase.cpp.
|
virtual |
Sets the overview stop dimension.
This controls how many layers will be built. If set to 64 then the builder will stop when height and width for current level are less than or equal to 64. Note a default can be set in the ossim preferences file, setting the keyword "overview_stop_dimension".
dim | The overview stop dimension |
Definition at line 127 of file ossimOverviewBuilderBase.cpp.
References m_overviewStopDimension.
|
pure virtual |
Sets the overview output type.
(pure virtual)
type | This should be the string representing the type. This method will do nothing if type is not handled and return false. |
Implemented in ossimTiffOverviewBuilder, ossimGdalOverviewBuilder, and ossimKakaduNitfOverviewBuilder.
Referenced by ossimOverviewBuilderFactory::createBuilder(), and ossimGdalOverviewBuilderFactory::createBuilder().
void ossimOverviewBuilderBase::setScanForMinMax | ( | bool | flag | ) |
Turn on/off scan for min max flag.
This method assumes the null is known.
flag | true turns scan on, false off. Default=off. |
Definition at line 155 of file ossimOverviewBuilderBase.cpp.
References m_scanForMinMax.
void ossimOverviewBuilderBase::setScanForMinMaxNull | ( | bool | flag | ) |
Turn on/off scan for min, max, null flag.
Attempts to find null, min and max where null is the minimum value found, min is the second most min and max is max.
flag | true turns scan on, false off. Default=off. |
Definition at line 165 of file ossimOverviewBuilderBase.cpp.
References m_scanForMinMaxNull.
Referenced by initializeScanOptions().
|
protected |
Definition at line 226 of file ossimOverviewBuilderBase.h.
Referenced by setBitMaskSpec().
|
protected |
Definition at line 225 of file ossimOverviewBuilderBase.h.
Referenced by getHistogramMode(), and setHistogramMode().
|
protected |
Definition at line 227 of file ossimOverviewBuilderBase.h.
Referenced by finalize(), ossimKakaduNitfOverviewBuilder::getOutputFile(), initializeScanOptions(), setInputSource(), ossimKakaduNitfOverviewBuilder::~ossimKakaduNitfOverviewBuilder(), and ~ossimOverviewBuilderBase().
|
protected |
Definition at line 230 of file ossimOverviewBuilderBase.h.
Referenced by ~ossimOverviewBuilderBase().
|
protected |
Definition at line 229 of file ossimOverviewBuilderBase.h.
Referenced by ~ossimOverviewBuilderBase().
|
protected |
Definition at line 228 of file ossimOverviewBuilderBase.h.
Referenced by finalize(), and setInputSource().
|
protected |
Definition at line 231 of file ossimOverviewBuilderBase.h.
|
protected |
Definition at line 224 of file ossimOverviewBuilderBase.h.
Referenced by getOverviewStopDimension(), getRequiredResLevels(), initializePreferenceSettings(), and setOverviewStopDimension().
|
protected |
Definition at line 234 of file ossimOverviewBuilderBase.h.
Referenced by initializePreferenceSettings(), and initializeScanOptions().
|
protected |
Definition at line 232 of file ossimOverviewBuilderBase.h.
Referenced by getScanForMinMax(), and setScanForMinMax().
|
protected |
Definition at line 233 of file ossimOverviewBuilderBase.h.
Referenced by getScanForMinMaxNull(), and setScanForMinMaxNull().