OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
#include <ossimImageChain.h>
Public Member Functions | |
ossimImageChain () | |
virtual | ~ossimImageChain () |
ossimConnectableObject::ConnectableObjectList & | getChainList () |
const ossimConnectableObject::ConnectableObjectList & | getChainList () const |
ossimConnectableObject * | operator[] (ossim_uint32 index) |
virtual ossimConnectableObject * | getConnectableObject (ossim_uint32 index) |
Same as operator[](ossim_uint32 i) More... | |
virtual ossim_int32 | indexOf (ossimConnectableObject *obj) const |
virtual ossimImageSource * | getFirstSource () |
Return the first source which is the one that first receives the getTile request. More... | |
virtual const ossimImageSource * | getFirstSource () const |
virtual ossimObject * | getFirstObject () |
virtual ossimImageSource * | getLastSource () |
Return the last source which is the one that last receives the getTile request. More... | |
virtual const ossimImageSource * | getLastSource () const |
virtual ossimObject * | getLastObject () |
bool | addFirst (ossimConnectableObject *obj) |
Adds it to the start of the chain. More... | |
bool | addLast (ossimConnectableObject *obj) |
Adds it to the end. More... | |
bool | deleteFirst () |
Deletes the first object. More... | |
bool | deleteLast () |
Deletes the last object. More... | |
bool | insertRight (ossimConnectableObject *newObj, ossimConnectableObject *rightOfThisObj) |
bool | insertRight (ossimConnectableObject *newObj, const ossimId &id) |
bool | insertLeft (ossimConnectableObject *newObj, const ossimId &id) |
bool | insertLeft (ossimConnectableObject *newObj, ossimConnectableObject *leftOfThisObj) |
bool | replace (ossimConnectableObject *newObj, ossimConnectableObject *oldObj) |
virtual bool | add (ossimConnectableObject *source) |
Will return true or false if an image source was added to the chain. More... | |
virtual ossimRefPtr< ossimImageData > | getTile (const ossimIrect &tileRect, ossim_uint32 resLevel=0) |
Within the image chain will pass the head of the list. More... | |
virtual ossim_uint32 | getNumberOfInputBands () const |
this call is passed to the head of the list. More... | |
virtual ossimScalarType | getOutputScalarType () const |
This call is passed to the head of the list. More... | |
virtual double | getNullPixelValue (ossim_uint32 band=0) const |
Each band has a null pixel associated with it. More... | |
virtual double | getMinPixelValue (ossim_uint32 band=0) const |
Returns the min pixel of the band. More... | |
virtual double | getMaxPixelValue (ossim_uint32 band=0) const |
Returns the max pixel of the band. More... | |
virtual void | getOutputBandList (std::vector< ossim_uint32 > &bandList) const |
Initializes bandList. More... | |
virtual ossim_uint32 | getTileWidth () const |
This call is passed to the head of the list. More... | |
virtual ossim_uint32 | getTileHeight () const |
This call is passed to the head of the list. More... | |
virtual ossimIrect | getBoundingRect (ossim_uint32 resLevel=0) const |
Will pass this call to the head of the list. More... | |
virtual void | getValidImageVertices (vector< ossimIpt > &validVertices, ossimVertexOrdering ordering=OSSIM_CLOCKWISE_ORDER, ossim_uint32 resLevel=0) const |
virtual ossimRefPtr< ossimImageGeometry > | getImageGeometry () |
Returns the image geometry object associated with this tile source or NULL if not defined. More... | |
virtual void | getDecimationFactor (ossim_uint32 resLevel, ossimDpt &result) const |
Will return the decimation factor for the given resolution level. More... | |
virtual void | getDecimationFactors (vector< ossimDpt > &decimations) const |
virtual ossim_uint32 | getNumberOfDecimationLevels () const |
Will return the number of resolution levels. More... | |
virtual bool | saveState (ossimKeywordlist &kwl, const char *prefix=NULL) const |
Will save the state of the chain. More... | |
virtual bool | loadState (const ossimKeywordlist &kwl, const char *prefix=NULL) |
Will load the state. More... | |
virtual void | initialize () |
virtual void | enableSource () |
virtual void | disableSource () |
bool | canConnectMyInputTo (ossim_int32 myInputIndex, const ossimConnectableObject *object) const |
required to be overriden by derived classes More... | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject::ConnectableObjectList findAllObjectsOfType(const RTTItypeid &typeInfo, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject::ConnectableObjectList findAllObjectsOfType(const ossimString &className, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findFirstObjectOfType(const RTTItypeid &typeInfo, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findFirstObjectOfType(const ossimString &className, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findObject(const ossimId &id, bool recurse=true)) | |
OSSIM_DEPRECATE_METHOD (virtual ossimConnectableObject *findObject(const ossimConnectableObject *obj, bool recurse=true)) | |
virtual void | makeUniqueIds () |
Will cycle through all sources setting their ids. More... | |
virtual ossim_uint32 | getNumberOfObjects (bool recurse=true) const |
Returns the number of objects within this container and all child containers. More... | |
virtual ossim_uint32 | getNumberOfSources () const |
Deprecated! Please use getNumberOfObjects(false). More... | |
virtual bool | addChild (ossimConnectableObject *attachableObject) |
Will add an object to the container and then set the added objects owner to this. More... | |
virtual bool | removeChild (ossimConnectableObject *object) |
Will remove the child from the container. More... | |
virtual ossimConnectableObject * | removeChild (const ossimId &id) |
virtual void | getChildren (vector< ossimConnectableObject *> &children, bool immediateChildrenOnlyFlag) |
virtual void | disconnectInputEvent (ossimConnectionEvent &event) |
virtual void | disconnectOutputEvent (ossimConnectionEvent &event) |
virtual void | connectInputEvent (ossimConnectionEvent &event) |
virtual void | connectOutputEvent (ossimConnectionEvent &event) |
virtual void | objectDestructingEvent (ossimObjectDestructingEvent &event) |
virtual void | propagateEventToOutputs (ossimEvent &event) |
virtual void | propagateEventToInputs (ossimEvent &event) |
virtual void | processEvent (ossimEvent &event) |
ProcessEvent. More... | |
virtual void | accept (ossimVisitor &visitor) |
We will add a visitor interface for all connectable objects. More... | |
void | deleteList () |
virtual ossimConnectableObject::ConnectableObjectList & | imageChainList () |
These access methods greatly facilitate the implementation of an image chain adaptor class. More... | |
virtual const ossimConnectableObject::ConnectableObjectList & | imageChainList () const |
![]() | |
ossimImageSource (ossimObject *owner=0) | |
ossimImageSource (ossimObject *owner, ossim_uint32 inputListSize, ossim_uint32 outputListSize, bool inputListIsFixedFlag=true, bool outputListIsFixedFlag=true) | |
virtual | ~ossimImageSource () |
virtual ossimRefPtr< ossimImageData > | getTile (const ossimIpt &origin, ossim_uint32 resLevel=0) |
virtual bool | getTile (ossimImageData *result, ossim_uint32 resLevel=0) |
Method to get a tile. More... | |
virtual ossimObject * | getObject () |
For RTTI support. More... | |
virtual const ossimObject * | getObject () const |
For RTTI support. More... | |
virtual void | getDecimationFactors (std::vector< ossimDpt > &decimations) const |
Will return an array of all decimations for each resolution level. More... | |
virtual ossim_uint32 | getNumberOfOutputBands () const |
Returns the number of bands in a tile returned from this TileSource. More... | |
virtual void | getBoundingRect (ossimIrect &rect, ossim_uint32 resLevel=0) const |
Gets the bounding rectangle of the source. More... | |
virtual void | getValidImageVertices (std::vector< ossimIpt > &validVertices, ossimVertexOrdering ordering=OSSIM_CLOCKWISE_ORDER, ossim_uint32 resLevel=0) const |
ordering specifies how the vertices should be arranged. More... | |
virtual void | setImageGeometry (const ossimImageGeometry *geom) |
Default implementation sets geometry of the first input to the geometry specified. More... | |
virtual void | saveImageGeometry () const |
Default method to call input's saveImageGeometry. More... | |
virtual void | saveImageGeometry (const ossimFilename &geometry_file) const |
Default method to call input's saveImageGeometry. More... | |
virtual ossimRefPtr< ossimProperty > | getProperty (const ossimString &name) const |
virtual void | setProperty (ossimRefPtr< ossimProperty > property) |
virtual void | getPropertyNames (std::vector< ossimString > &propertyNames) const |
virtual bool | isIndexedData () 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 bool | getEnableFlag () const |
virtual void | setEnableFlag (bool flag) |
virtual bool | isInitialized () const |
virtual void | setInitializedFlag (bool flag) |
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 | 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 | 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... | |
![]() | |
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 |
![]() | |
ossimConnectableObjectListener () | |
virtual | ~ossimConnectableObjectListener () |
virtual void | connectionEvent (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 |
![]() | |
ossimConnectableContainerInterface (ossimObject *obj) | |
virtual | ~ossimConnectableContainerInterface () |
virtual ossimConnectableObject::ConnectableObjectList | findAllObjectsOfType (const RTTItypeid &typeInfo, bool recurse=true)=0 |
virtual ossimConnectableObject::ConnectableObjectList | findAllObjectsOfType (const ossimString &className, bool recurse=true)=0 |
virtual ossimConnectableObject * | findFirstObjectOfType (const RTTItypeid &typeInfo, bool recurse=true)=0 |
virtual ossimConnectableObject * | findFirstObjectOfType (const ossimString &className, bool recurse=true)=0 |
virtual ossimConnectableObject * | findObject (const ossimId &id, bool recurse=true)=0 |
virtual ossimConnectableObject * | findObject (const ossimConnectableObject *obj, bool recurse=true)=0 |
ossimObject * | getObject () |
const ossimObject * | getObject () const |
void | deleteAllChildren () |
virtual void | getChildren (std::vector< ossimConnectableObject *> &children, bool immediateChildrenOnlyFlag)=0 |
Protected Member Functions | |
void | prepareForRemoval (ossimConnectableObject *connectableObject) |
Inserts all of this object's children and inputs into the container provided. More... | |
bool | addAllSources (map< ossimId, vector< ossimId > > &idMapping, const ossimKeywordlist &kwl, const char *prefix=NULL) |
For dynamic loading to take place we must allocate all objects first and then assign id's later. More... | |
void | findInputConnectionIds (vector< ossimId > &result, const ossimKeywordlist &kwl, const char *prefix=NULL) |
bool | connectAllSources (const map< ossimId, vector< ossimId > > &idMapping) |
![]() | |
ossimImageSource (const ossimImageSource &rhs) | |
const ossimImageSource & | operator= (const ossimImageSource &) |
![]() | |
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 |
Definition at line 23 of file ossimImageChain.h.
ossimImageChain::ossimImageChain | ( | ) |
Definition at line 60 of file ossimImageChain.cpp.
References ossimListenerManager::addListener(), and ossimConnectableContainerInterface::theBaseObject.
|
virtual |
Definition at line 75 of file ossimImageChain.cpp.
References deleteList(), and ossimListenerManager::removeListener().
|
virtual |
We will add a visitor interface for all connectable objects.
Reimplemented from ossimConnectableObject.
Definition at line 1779 of file ossimImageChain.cpp.
References ossimConnectableObject::accept(), ossimRefPtr< T >::get(), ossimVisitor::getVisitorType(), ossimVisitor::hasVisited(), imageChainList(), ossimVisitor::setVisitorType(), ossimVisitor::stopTraversal(), ossimVisitor::turnOffVisitorType(), ossimVisitor::visit(), ossimVisitor::VISIT_CHILDREN, ossimVisitor::VISIT_INPUTS, and ossimVisitor::VISIT_OUTPUTS.
Referenced by ATP::AtpAnnotatedImage::AtpAnnotatedImage(), connectAllSources(), ATP::AtpGenerator::getImageHandler(), insertLeft(), insertRight(), removeChild(), and ossimIgen::setView().
|
virtual |
Will return true or false if an image source was added to the chain.
It will add and do a connection to the previous source automatically. This is a chain and the order of insertion matters. It adds it to the beginning of the list. The last one added is the first one to receive the getTile. Basically inserts to the right of the rightmost filter
Definition at line 602 of file ossimImageChain.cpp.
References ossimListenerManager::addListener(), ossimConnectableObject::changeOwner(), ossimConnectableObject::connectInputList(), ossimConnectableObject::disconnectAllOutputs(), ossimListenerManager::fireEvent(), ossimConnectableObject::getInputList(), ossimConnectableObject::getInputListIsFixedFlag(), ossimConnectableObject::getOutputListIsFixedFlag(), imageChainList(), OSSIM_EVENT_ADD_OBJECT_ID, size, ossimConnectableObject::theInputListIsFixedFlag, ossimConnectableObject::theInputObjectList, and ossimConnectableObject::theOutputListIsFixedFlag.
Referenced by addChild(), addLast(), ATP::AtpAnnotatedImage::AtpAnnotatedImage(), ATP::AtpGenerator::constructChain(), ossimChipProcTool::createInputChain(), ossimShorelineTool::doThreshold(), ossimShorelineTool::execute(), ossimIgenGenerator::generateGeoTiledSpecList(), ossimIgenGenerator::generateNoTiledSpecList(), ossimIgenGenerator::generatePixelTiledSpecList(), ossimChipProcTool::getChip(), ossimBandMergeTool::initHistogramStretch(), ossimSubImageTool::initialize(), ossimBandMergeTool::initProcessingChain(), ossimHillshadeTool::initProcessingChain(), ossimSlopeTool::initProcessingChain(), ossimShorelineTool::initProcessingChain(), ossimHdf5Tool::initProcessingChain(), ossimHlzTool::initProcessingChain(), ossimViewshedTool::initProcessingChain(), insertLeft(), insertRight(), ossimHdf5Tool::loadImageFiles(), and ossimMultiThreadSequencer::setToStartOfSequence().
|
protected |
For dynamic loading to take place we must allocate all objects first and then assign id's later.
We must remember the id's so we can do this. we will create a map that takes the id of the source as a key and a vector of input id's to connect it's inputs to.
Definition at line 1216 of file ossimImageChain.cpp.
References ossimString::c_str(), ossimKeywordlist::getSubstringKeyList(), ossimImageSource::loadState(), ossimString::toInt(), and ossimString::toString().
Referenced by loadState().
|
virtual |
Will add an object to the container and then set the added objects owner to this.
Implements ossimConnectableContainerInterface.
Definition at line 479 of file ossimImageChain.cpp.
References add().
bool ossimImageChain::addFirst | ( | ossimConnectableObject * | obj | ) |
Adds it to the start of the chain.
This is the first one to receive the getTile request. This basically inserts it to the right of the right most filter. Returns true on success, false on error.
Definition at line 81 of file ossimImageChain.cpp.
References getFirstObject(), and insertRight().
Referenced by ossimSingleImageChain::addBandSelector(), ossimSingleImageChain::addBrightnessContrast(), ossimSingleImageChain::addCache(), ossimSingleImageChain::addGeoPolyCutter(), ossimSingleImageChain::addHistogramRemapper(), ossimSingleImageChain::addNullPixelFlip(), ossimSingleImageChain::addResampler(), ossimSingleImageChain::addScalarRemapper(), ossimSingleImageChain::addSharpen(), ossimSingleImageChain::createRenderedChain(), and ossimIgen::outputProduct().
bool ossimImageChain::addLast | ( | ossimConnectableObject * | obj | ) |
Adds it to the end.
this is the last one to receive the getTile request. This basically inserts it to the left of the left most filter. Returns true on success, false on error.
Definition at line 89 of file ossimImageChain.cpp.
References add(), ossimListenerManager::addListener(), ossimConnectableObject::changeOwner(), ossimConnectableObject::connectInputList(), ossimConnectableObject::connectMyInputTo(), ossimConnectableObject::disconnectAllInputs(), ossimListenerManager::fireEvent(), ossimConnectableObject::getInputList(), ossimConnectableObject::getInputListIsFixedFlag(), ossimConnectableObject::getNumberOfInputs(), imageChainList(), OSSIM_EVENT_ADD_OBJECT_ID, ossimConnectableObject::setNumberOfInputs(), size, and ossimConnectableObject::theInputListIsFixedFlag.
Referenced by ossimSingleImageChain::addImageHandler(), insertLeft(), and ossimHdf5Tool::loadImageFiles().
|
inlinevirtual |
required to be overriden by derived classes
Implements ossimConnectableObject.
Definition at line 207 of file ossimImageChain.h.
References ossimConnectableObject::canConnectMyInputTo(), and PTR_CAST.
|
protected |
Definition at line 1363 of file ossimImageChain.cpp.
References accept(), ossimConnectableObject::connectMyInputTo(), ossimConnectableObject::disconnectMyInput(), ossimConnectableContainerInterface::findObject(), ossimIdVisitor::getObject(), PTR_CAST, ossimIdVisitor::reset(), ossimIdVisitor::setId(), and ossimVisitor::VISIT_CHILDREN.
Referenced by loadState().
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 1650 of file ossimImageChain.cpp.
References ossimConnectableObject::findInputIndex(), ossimEvent::getObject(), imageChainList(), initialize(), size, and theLoadStateFlag.
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 1678 of file ossimImageChain.cpp.
bool ossimImageChain::deleteFirst | ( | ) |
Deletes the first object.
Note this is really most right of the chain. Returns true if deletion occurred, false if the chain is empty.
Definition at line 1577 of file ossimImageChain.cpp.
References ossimListenerManager::fireEvent(), imageChainList(), OSSIM_EVENT_REMOVE_OBJECT_ID, prepareForRemoval(), and size.
bool ossimImageChain::deleteLast | ( | ) |
Deletes the last object.
Note this is really most left of the chain. Returns true if deletion occurred, false if the chain is empty.
Definition at line 1593 of file ossimImageChain.cpp.
References ossimListenerManager::fireEvent(), imageChainList(), OSSIM_EVENT_REMOVE_OBJECT_ID, prepareForRemoval(), and size.
Referenced by ossimSingleImageChain::reset().
void ossimImageChain::deleteList | ( | ) |
Definition at line 1609 of file ossimImageChain.cpp.
References ossimListenerManager::fireEvent(), imageChainList(), OSSIM_EVENT_REMOVE_OBJECT_ID, and prepareForRemoval().
Referenced by loadState(), and ~ossimImageChain().
|
virtual |
Reimplemented from ossimSource.
Definition at line 1548 of file ossimImageChain.cpp.
References ossimSource::disableSource(), imageChainList(), PTR_CAST, and ossimSource::theEnableFlag.
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 1629 of file ossimImageChain.cpp.
References ossimEvent::getObject(), ossimConnectionEvent::getOldObject(), imageChainList(), and size.
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 1646 of file ossimImageChain.cpp.
|
virtual |
Reimplemented from ossimSource.
Definition at line 1529 of file ossimImageChain.cpp.
References ossimSource::enableSource(), imageChainList(), PTR_CAST, and ossimSource::theEnableFlag.
|
protected |
Definition at line 1329 of file ossimImageChain.cpp.
References ossimKeywordlist::find(), ossimKeywordlist::getSubstringKeyList(), ossimString::toInt(), ossimString::toLong(), and ossimString::toString().
|
virtual |
Will pass this call to the head of the list.
Reimplemented from ossimImageSource.
Definition at line 1043 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), ossimDrect::makeNan(), PTR_CAST, and size.
Referenced by ossimChipProcTool::computeAdjustedViewFromGrect(), and ossimIgen::initializeChain().
|
inline |
Definition at line 31 of file ossimImageChain.h.
|
inline |
Definition at line 32 of file ossimImageChain.h.
|
virtual |
Definition at line 563 of file ossimImageChain.cpp.
References imageChainList(), and PTR_CAST.
|
virtual |
Same as operator[](ossim_uint32 i)
index | Index of object to get. |
Implements ossimConnectableContainerInterface.
Definition at line 1753 of file ossimImageChain.cpp.
References imageChainList(), and size.
Referenced by operator[]().
|
virtual |
Will return the decimation factor for the given resolution level.
the decimation is the scale from Resolution 0 or full res. Usually this is a power of 2 decimation where the decimation result is 1.0/2^resoltion.
Reimplemented from ossimImageSource.
Definition at line 1131 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), ossimDpt::makeNan(), PTR_CAST, and size.
|
virtual |
Definition at line 1162 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
Definition at line 144 of file ossimImageChain.cpp.
References imageChainList(), and size.
Referenced by addFirst().
|
virtual |
Return the first source which is the one that first receives the getTile request.
Definition at line 126 of file ossimImageChain.cpp.
References imageChainList(), and size.
Referenced by ossimShorelineTool::autoComputeThreshold(), processEvent(), and ossimImageChainMtAdaptor::setOriginalChain().
|
virtual |
Definition at line 136 of file ossimImageChain.cpp.
References imageChainList(), and size.
|
virtual |
Returns the image geometry object associated with this tile source or NULL if not defined.
The geometry contains full-to-local image transform as well as projection (image-to-world). Default implementation returns the image geometry object associated with the next
(left) input source (if any) connected to this source in the chain, or NULL.
Reimplemented from ossimImageSource.
Definition at line 1107 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
Referenced by ossimSingleImageChain::addGeoPolyCutter(), ossimSubImageTool::execute(), ATP::AtpGenerator::initialize(), and ossimIgen::initializeChain().
|
virtual |
Definition at line 172 of file ossimImageChain.cpp.
References imageChainList(), and size.
|
virtual |
Return the last source which is the one that last receives the getTile request.
Definition at line 154 of file ossimImageChain.cpp.
References imageChainList(), and size.
Referenced by ATP::AtpGenerator::getValidVertices().
|
virtual |
Definition at line 164 of file ossimImageChain.cpp.
References imageChainList(), and size.
|
virtual |
Returns the max pixel of the band.
Reimplemented from ossimImageSource.
Definition at line 921 of file ossimImageChain.cpp.
References ossim::defaultMax(), ossimConnectableObject::getInput(), ossimImageSource::getMaxPixelValue(), getOutputScalarType(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
Returns the min pixel of the band.
Reimplemented from ossimImageSource.
Definition at line 894 of file ossimImageChain.cpp.
References ossim::defaultMin(), ossimConnectableObject::getInput(), getOutputScalarType(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
Each band has a null pixel associated with it.
The null pixel represents an invalid value.
Reimplemented from ossimImageSource.
Definition at line 867 of file ossimImageChain.cpp.
References ossim::defaultNull(), ossimConnectableObject::getInput(), getOutputScalarType(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
Referenced by ossimViewshedTool::computeViewshed().
|
virtual |
Will return the number of resolution levels.
Note: resolution level 0 is included in the return count.
Reimplemented from ossimImageSource.
Definition at line 1188 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
this call is passed to the head of the list.
Implements ossimImageSource.
Definition at line 840 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
Returns the number of objects within this container and all child containers.
recurse | If true and object is a contains containers; all objects will be conter. If false only the objects of this container will be counted (theImageChainList.size()). |
Implements ossimConnectableContainerInterface.
Definition at line 451 of file ossimImageChain.cpp.
References ossimConnectableContainerInterface::getNumberOfObjects(), imageChainList(), and PTR_CAST.
Referenced by getNumberOfSources().
|
virtual |
Deprecated! Please use getNumberOfObjects(false).
Definition at line 470 of file ossimImageChain.cpp.
References getNumberOfObjects(), ossimNotify(), and ossimNotifyLevel_NOTICE.
|
virtual |
Initializes bandList.
This implementation initializes to the zero based order of input bands. Derived classes that are band selectors should override.
bandList | Initialized by this. |
Reimplemented from ossimImageSource.
Definition at line 948 of file ossimImageChain.cpp.
References ossimImageSource::getOutputBandList(), imageChainList(), ossimSource::isSourceEnabled(), size, and ossimRefPtr< T >::valid().
|
virtual |
This call is passed to the head of the list.
Reimplemented from ossimImageSource.
Definition at line 962 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), OSSIM_SCALAR_UNKNOWN, PTR_CAST, and size.
Referenced by ATP::AtpGenerator::constructChain(), ossimChipProcTool::createInputChain(), getMaxPixelValue(), getMinPixelValue(), getNullPixelValue(), and ossimHdf5Tool::loadImageFiles().
|
virtual |
Within the image chain will pass the head of the list.
Reimplemented from ossimImageSource.
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 796 of file ossimImageChain.cpp.
References ossimRefPtr< T >::get(), ossimConnectableObject::getInput(), ossimImageSource::getTile(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
Referenced by ossimHlzTool::getChip(), ossimShorelineTool::getChip(), ossimViewshedTool::getChip(), ossimChipProcTool::getChip(), and ossimImageChainMtAdaptor::getTile().
|
virtual |
This call is passed to the head of the list.
Reimplemented from ossimImageSource.
Definition at line 1016 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
This call is passed to the head of the list.
Reimplemented from ossimImageSource.
Definition at line 989 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
virtual |
Definition at line 1075 of file ossimImageChain.cpp.
References ossimConnectableObject::getInput(), imageChainList(), ossimSource::isSourceEnabled(), PTR_CAST, and size.
|
inlinevirtual |
These access methods greatly facilitate the implementation of an image chain adaptor class.
They shouldn't be accessed directly by any other classes. These methods really should be "protected" but the compiler complains if this base class' declarations are "protected".
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 373 of file ossimImageChain.h.
Referenced by accept(), add(), addLast(), connectInputEvent(), deleteFirst(), deleteLast(), deleteList(), disableSource(), disconnectInputEvent(), enableSource(), getBoundingRect(), getChildren(), getConnectableObject(), getDecimationFactor(), getDecimationFactors(), getFirstObject(), getFirstSource(), getImageGeometry(), getLastObject(), getLastSource(), getMaxPixelValue(), getMinPixelValue(), getNullPixelValue(), getNumberOfDecimationLevels(), getNumberOfInputBands(), getNumberOfObjects(), getOutputBandList(), getOutputScalarType(), getTile(), getTileHeight(), getTileWidth(), getValidImageVertices(), ossimImageChainMtAdaptor::imageChainList(), indexOf(), insertLeft(), insertRight(), makeUniqueIds(), objectDestructingEvent(), propagateEventToInputs(), propagateEventToOutputs(), removeChild(), replace(), and saveState().
|
inlinevirtual |
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 374 of file ossimImageChain.h.
|
virtual |
Definition at line 1764 of file ossimImageChain.cpp.
References imageChainList().
Referenced by replace().
|
virtual |
Implements ossimImageSource.
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 1497 of file ossimImageChain.cpp.
Referenced by ATP::AtpAnnotatedImage::AtpAnnotatedImage(), connectInputEvent(), ossimSingleImageChain::createRenderedChain(), ossimShorelineTool::execute(), ossimIgen::initializeChain(), and ossimHdf5Tool::loadImageFiles().
bool ossimImageChain::insertLeft | ( | ossimConnectableObject * | newObj, |
const ossimId & | id | ||
) |
Definition at line 748 of file ossimImageChain.cpp.
References accept(), ossimConnectableContainerInterface::findObject(), ossimIdVisitor::getObject(), ossimVisitor::VISIT_CHILDREN, and ossimVisitor::VISIT_INPUTS.
Referenced by ossimSingleImageChain::addScalarRemapper().
bool ossimImageChain::insertLeft | ( | ossimConnectableObject * | newObj, |
ossimConnectableObject * | leftOfThisObj | ||
) |
Definition at line 711 of file ossimImageChain.cpp.
References add(), addLast(), ossimListenerManager::addListener(), ossimConnectableObject::changeOwner(), ossimConnectableObject::connectInputList(), ossimConnectableObject::connectMyInputTo(), ossimConnectableObject::disconnectAllInputs(), ossimListenerManager::fireEvent(), ossimConnectableObject::getInputList(), imageChainList(), OSSIM_EVENT_ADD_OBJECT_ID, and size.
bool ossimImageChain::insertRight | ( | ossimConnectableObject * | newObj, |
ossimConnectableObject * | rightOfThisObj | ||
) |
Definition at line 649 of file ossimImageChain.cpp.
References add(), ossimListenerManager::addListener(), ossimConnectableObject::changeOwner(), ossimConnectableObject::connectMyInputTo(), ossimConnectableObject::connectOutputList(), ossimConnectableObject::disconnectAllOutputs(), ossimListenerManager::fireEvent(), ossimConnectableObject::getOutputList(), imageChainList(), OSSIM_EVENT_ADD_OBJECT_ID, and size.
Referenced by addFirst(), and insertRight().
bool ossimImageChain::insertRight | ( | ossimConnectableObject * | newObj, |
const ossimId & | id | ||
) |
Definition at line 687 of file ossimImageChain.cpp.
References accept(), ossimConnectableContainerInterface::findObject(), ossimIdVisitor::getObject(), insertRight(), and ossimVisitor::VISIT_CHILDREN.
|
virtual |
Will load the state.
Reimplemented from ossimImageSource.
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 1468 of file ossimImageChain.cpp.
References addAllSources(), CLOG, connectAllSources(), deleteList(), ossimImageSource::loadState(), and theLoadStateFlag.
|
virtual |
Will cycle through all sources setting their ids.
the idLast wlil be updated so we can recurse into other containers.
Implements ossimConnectableContainerInterface.
Definition at line 430 of file ossimImageChain.cpp.
References imageChainList(), ossimIdManager::instance(), ossimConnectableContainerInterface::makeUniqueIds(), PTR_CAST, and ossimConnectableObject::setId().
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 1706 of file ossimImageChain.cpp.
References ossimEvent::getObject(), imageChainList(), PTR_CAST, and removeChild().
ossimConnectableObject * ossimImageChain::operator[] | ( | ossim_uint32 | index | ) |
index | Index of object to get. |
Definition at line 1748 of file ossimImageChain.cpp.
References getConnectableObject().
ossimImageChain::OSSIM_DEPRECATE_METHOD | ( | virtual ossimConnectableObject::ConnectableObjectList | findAllObjectsOfTypeconst RTTItypeid &typeInfo, bool recurse=true | ) |
These methods are now deprecated. You can achieve the same thing by using the new visitor design pattern. If this does not achieve exactly what you want then you can derive new rules by overriding the virtual visit method in ossimVisitor
ossimTypeIdVisitor visitor(tyeId, false, ossimVisitor::VISIT_CHILDREN); connectableObject->accept(visitor); ossimCollectionVisitor::List& collection = visitor.getObjects();
ossimImageChain::OSSIM_DEPRECATE_METHOD | ( | virtual ossimConnectableObject::ConnectableObjectList | findAllObjectsOfTypeconst ossimString &className, bool recurse=true | ) |
These methods are now deprecated. You can achieve the same thing by using the new visitor design pattern. If this does not achieve exactly what you want then you can derive new rules by overriding the virtual visit method in ossimVisitor
ossimTypeNameVisitor visitor(typeName, false, ossimVisitor::VISIT_CHILDREN); connectableObject->accept(visitor); ossimCollectionVisitor::List& collection = visitor.getObjects();
ossimImageChain::OSSIM_DEPRECATE_METHOD | ( | virtual ossimConnectableObject * | findFirstObjectOfTypeconst RTTItypeid &typeInfo, bool recurse=true | ) |
These methods are now deprecated. You can achieve the same thing by using the new visitor design pattern. If this does not achieve exactly what you want then you can derive new rules by overriding the virtual visit method in ossimVisitor
ossimTypeIdVisitor visitor(tyeId, true, ossimVisitor::VISIT_CHILDREN); connectableObject->accept(visitor); ossimRefPtr<ossimConnectableObject> obj = visitor.getObject();
ossimImageChain::OSSIM_DEPRECATE_METHOD | ( | virtual ossimConnectableObject * | findFirstObjectOfTypeconst ossimString &className, bool recurse=true | ) |
These methods are now deprecated. You can achieve the same thing by using the new visitor design pattern. If this does not achieve exactly what you want then you can derive new rules by overriding the virtual visit method in ossimVisitor
ossimTypeNameVisitor visitor(className, true, ossimVisitor::VISIT_CHILDREN); connectableObject->accept(visitor); ossimRefPtr<ossimConnectableObject> obj = visitor.getObject();
ossimImageChain::OSSIM_DEPRECATE_METHOD | ( | virtual ossimConnectableObject * | findObjectconst ossimId &id, bool recurse=true | ) |
These methods are now deprecated. You can achieve the same thing by using the new visitor design pattern. If this does not achieve exactly what you want then you can derive new rules by overriding the virtual visit method in ossimVisitor
ossimIdVisitor visitor(tyeId, true, ossimVisitor::VISIT_CHILDREN); connectableObject->accept(visitor); ossimRefPtr<ossimConnectableObject> obj = visitor.getObject();
ossimImageChain::OSSIM_DEPRECATE_METHOD | ( | virtual ossimConnectableObject * | findObjectconst ossimConnectableObject *obj, bool recurse=true | ) |
|
protected |
Inserts all of this object's children and inputs into the container provided.
Since this is itself a form of container, this method will consolidate this chain with the argument container. Consequently, this chain object will not be represented in the container, but its children will be, with correct input and output connections to external objects. Ownership of children will pass to the argument container.
Definition at line 1567 of file ossimImageChain.cpp.
References ossimConnectableObject::changeOwner(), ossimConnectableObject::disconnect(), and ossimListenerManager::removeListener().
Referenced by deleteFirst(), deleteLast(), and deleteList().
|
virtual |
ProcessEvent.
The defaul is to do nothing. Derived classes need to override this class.
Reimplemented from ossimConnectableObjectListener.
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 37 of file ossimImageChain.cpp.
References ossimEvent::getCurrentObject(), getFirstSource(), ossimConnectableObject::getOutputList(), ossimEvent::isPropagatingToOutputs(), ossimConnectableObjectListener::processEvent(), and PTR_CAST.
|
virtual |
Reimplemented from ossimConnectableObject.
Definition at line 1732 of file ossimImageChain.cpp.
References imageChainList(), and size.
|
virtual |
Reimplemented from ossimConnectableObject.
Definition at line 1716 of file ossimImageChain.cpp.
References imageChainList(), and size.
|
virtual |
Will remove the child from the container.
Changes the owner of the child to be NULL;
Implements ossimConnectableContainerInterface.
Definition at line 484 of file ossimImageChain.cpp.
References ossimListenerManager::addListener(), ossimListenerManager::fireEvent(), imageChainList(), OSSIM_EVENT_REMOVE_OBJECT_ID, size, ossimConnectableObject::theInputListIsFixedFlag, and ossimConnectableObject::theInputObjectList.
Referenced by ossimSingleImageChain::close(), objectDestructingEvent(), and removeChild().
|
virtual |
Definition at line 550 of file ossimImageChain.cpp.
References accept(), ossimIdVisitor::getObject(), removeChild(), ossimVisitor::VISIT_CHILDREN, and ossimVisitor::VISIT_INPUTS.
bool ossimImageChain::replace | ( | ossimConnectableObject * | newObj, |
ossimConnectableObject * | oldObj | ||
) |
Definition at line 771 of file ossimImageChain.cpp.
References ossimListenerManager::addListener(), ossimConnectableObject::changeOwner(), ossimConnectableObject::connectInputList(), ossimConnectableObject::connectOutputList(), ossimConnectableObject::getInputList(), ossimConnectableObject::getOutputList(), imageChainList(), indexOf(), and ossimListenerManager::removeListener().
|
virtual |
Will save the state of the chain.
Reimplemented from ossimImageSource.
Reimplemented in ossimImageChainMtAdaptor.
Definition at line 1436 of file ossimImageChain.cpp.
References ossimString::c_str(), imageChainList(), ossimImageSource::saveState(), and ossimString::toString().
Referenced by ossimIgenGenerator::generateGeoTiledSpecList(), ossimIgenGenerator::generateNoTiledSpecList(), and ossimIgenGenerator::generatePixelTiledSpecList().
|
protected |
Definition at line 396 of file ossimImageChain.h.
|
protected |
This will hold a sequence of image sources.
theFirst one in the list will be the head of the list and the last one is the tail.
Definition at line 394 of file ossimImageChain.h.
Referenced by ossimImageChainMtAdaptor::imageChainList().
|
mutableprotected |
Definition at line 398 of file ossimImageChain.h.
Referenced by connectInputEvent(), and loadState().