OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
#include <ossimImageHistogramSource.h>
Public Member Functions | |
ossimImageHistogramSource (ossimObject *owner=0) | |
virtual ossimObject * | getObject () |
virtual const ossimObject * | getObject () const |
void | setAreaOfInterest (const ossimIrect &rect) |
ossimIrect | getAreaOfInterest () const |
void | getAreaOfInterest (ossimIrect &rect) const |
virtual ossim_uint32 | getMaxNumberOfRLevels () const |
virtual void | setMaxNumberOfRLevels (ossim_uint32 number) |
virtual ossimRefPtr< ossimMultiResLevelHistogram > | getHistogram (const ossimIrect &rect) |
virtual ossimRefPtr< ossimMultiResLevelHistogram > | getHistogram () |
virtual bool | execute () |
virtual bool | canConnectMyInputTo (ossim_int32 myInputIndex, const ossimConnectableObject *object) const |
required to be overriden by derived classes More... | |
void | setNumberOfBinsOverride (ossim_int32 numberOfBinsOverride) |
void | setMinValueOverride (ossim_float32 minValueOverride) |
void | setMaxValueOverride (ossim_float32 maxValueOverride) |
void | setNumberOfTiles (ossim_uint32 numberOfTiles) |
ossimHistogramMode | getComputationMode () const |
void | setComputationMode (ossimHistogramMode mode) |
virtual void | propertyEvent (ossimPropertyEvent &event) |
virtual void | connectInputEvent (ossimConnectionEvent &event) |
virtual bool | loadState (const ossimKeywordlist &kwl, const char *prefix=0) |
virtual bool | saveState (ossimKeywordlist &kwl, const char *prefix=0) const |
![]() | |
virtual | ~ossimHistogramSource () |
![]() | |
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 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 | 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 |
![]() | |
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 | connectOutputEvent (ossimConnectionEvent &) |
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 |
![]() | |
ossimProcessInterface () | |
virtual | ~ossimProcessInterface () |
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 |
Protected Member Functions | |
virtual | ~ossimImageHistogramSource () |
void | getBinInformation (ossim_uint32 &numberOfBins, ossim_float64 &minValue, ossim_float64 &maxValue, ossim_uint32 band) const |
virtual void | computeNormalModeHistogram () |
virtual void | computeFastModeHistogram () |
![]() | |
ossimHistogramSource (ossimObject *owner=NULL, ossim_uint32 numberOfInputs=0, ossim_uint32 numberOfOutputs=0, bool inputListFixedFlag=true, bool outputListFixedFlag=true) | |
![]() | |
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 } |
This source expects as input an ossimImageSource. it will slice up the requested region into tiles and compute the histogram of the passed in rectangle.
Definition at line 23 of file ossimImageHistogramSource.h.
ossimImageHistogramSource::ossimImageHistogramSource | ( | ossimObject * | owner = 0 | ) |
Definition at line 22 of file ossimImageHistogramSource.cpp.
References ossimListenerManager::addListener(), ossimIrect::makeNan(), ossim::nan(), theAreaOfInterest, theMaxValueOverride, theMinValueOverride, and theNumberOfBinsOverride.
|
protectedvirtual |
Definition at line 41 of file ossimImageHistogramSource.cpp.
References ossimListenerManager::removeListener().
|
virtual |
required to be overriden by derived classes
Implements ossimConnectableObject.
Definition at line 149 of file ossimImageHistogramSource.cpp.
References PTR_CAST.
|
protectedvirtual |
Definition at line 434 of file ossimImageHistogramSource.cpp.
References ossimMultiBandHistogram::create(), ossimMultiResLevelHistogram::create(), getBinInformation(), ossimImageData::getBuf(), ossimDataObject::getDataObjectStatus(), ossimConnectableObject::getInput(), ossimMultiResLevelHistogram::getMultiBandHistogram(), ossimImageSource::getNumberOfOutputBands(), ossimImageSource::getTile(), ossimImageSource::getTileHeight(), ossimImageSource::getTileWidth(), ossimIrect::height(), ossim::max(), ossim::min(), ossimProcessInterface::needsAborting(), OSSIM_EMPTY, ossimImageData::populateHistogram(), PTR_CAST, ossimProcessInterface::setPercentComplete(), ossimIrect::stretchToTileBoundary(), theAreaOfInterest, ossimHistogramSource::theHistogram, ossimIrect::ul(), ossimRefPtr< T >::valid(), ossimIrect::width(), ossimIpt::x, x, ossimIpt::y, and y.
Referenced by execute().
|
protectedvirtual |
Definition at line 321 of file ossimImageHistogramSource.cpp.
References ossimConnectableObject::connectMyInputTo(), ossimMultiBandHistogram::create(), ossimMultiResLevelHistogram::create(), ossimConnectableObject::disconnect(), getBinInformation(), ossimImageData::getBuf(), ossimDataObject::getDataObjectStatus(), ossimImageSource::getDecimationFactors(), ossimConnectableObject::getInput(), ossimMultiResLevelHistogram::getMultiBandHistogram(), ossimImageSourceSequencer::getNextTile(), ossimImageSource::getNumberOfOutputBands(), ossimImageSourceSequencer::getNumberOfTiles(), ossimImageSourceSequencer::initialize(), ossim::min(), ossimProcessInterface::needsAborting(), OSSIM_EMPTY, ossimNotify(), ossimNotifyLevel_WARN, ossimImageData::populateHistogram(), PTR_CAST, ossimImageSourceSequencer::setAreaOfInterest(), ossimProcessInterface::setPercentComplete(), ossimImageSourceSequencer::setToStartOfSequence(), theAreaOfInterest, ossimHistogramSource::theHistogram, theMaxNumberOfResLevels, and ossimRefPtr< T >::valid().
Referenced by execute().
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 185 of file ossimImageHistogramSource.cpp.
References theHistogramRecomputeFlag.
|
virtual |
Implements ossimProcessInterface.
Definition at line 101 of file ossimImageHistogramSource.cpp.
References computeFastModeHistogram(), computeNormalModeHistogram(), ossimConnectableObject::getInput(), ossimIrect::hasNans(), ossimSource::isSourceEnabled(), ossimProcessInterface::needsAborting(), OSSIM_HISTO_MODE_FAST, OSSIM_HISTO_MODE_NORMAL, ossimProcessInterface::PROCESS_STATUS_ABORTED, ossimProcessInterface::PROCESS_STATUS_EXECUTING, ossimProcessInterface::PROCESS_STATUS_NOT_EXECUTING, PTR_CAST, ossimProcessInterface::setProcessStatus(), theAreaOfInterest, theComputationMode, ossimHistogramSource::theHistogram, theHistogramRecomputeFlag, and ossimRefPtr< T >::valid().
Referenced by getHistogram(), and ossimKMeansFilter::initialize().
ossimIrect ossimImageHistogramSource::getAreaOfInterest | ( | ) | const |
Definition at line 65 of file ossimImageHistogramSource.cpp.
References theAreaOfInterest.
void ossimImageHistogramSource::getAreaOfInterest | ( | ossimIrect & | rect | ) | const |
Definition at line 70 of file ossimImageHistogramSource.cpp.
References theAreaOfInterest.
|
protected |
Definition at line 196 of file ossimImageHistogramSource.cpp.
References ossimConnectableObject::getInput(), ossimImageSource::getMaxPixelValue(), ossimImageSource::getMinPixelValue(), ossimImageSource::getOutputScalarType(), OSSIM_DEFAULT_MAX_PIX_SINT16, OSSIM_DEFAULT_MAX_PIX_UCHAR, OSSIM_DEFAULT_MAX_PIX_UINT11, OSSIM_DEFAULT_MAX_PIX_UINT12, OSSIM_DEFAULT_MAX_PIX_UINT13, OSSIM_DEFAULT_MAX_PIX_UINT14, OSSIM_DEFAULT_MAX_PIX_UINT15, OSSIM_DEFAULT_MAX_PIX_UINT16, OSSIM_DEFAULT_MIN_PIX_SINT16, OSSIM_FLOAT32, OSSIM_FLOAT64, OSSIM_NORMALIZED_DOUBLE, OSSIM_NORMALIZED_FLOAT, OSSIM_SINT16, OSSIM_SINT32, OSSIM_UINT16, OSSIM_UINT32, OSSIM_UINT8, OSSIM_USHORT11, OSSIM_USHORT12, OSSIM_USHORT13, OSSIM_USHORT14, OSSIM_USHORT15, and PTR_CAST.
Referenced by computeFastModeHistogram(), and computeNormalModeHistogram().
ossimHistogramMode ossimImageHistogramSource::getComputationMode | ( | ) | const |
Definition at line 170 of file ossimImageHistogramSource.cpp.
References theComputationMode.
|
virtual |
The first argument is the region of interest that you wish to use for the histogram. If the region is different than what it has already computed before then the histogram is considered dirty and will be re-computed. The returned object is a multi-reslevel histogram
Definition at line 89 of file ossimImageHistogramSource.cpp.
References getHistogram(), ossimIrect::hasNans(), theAreaOfInterest, and theHistogramRecomputeFlag.
Referenced by ossimKMeansFilter::initialize().
|
virtual |
Reimplemented from ossimHistogramSource.
Definition at line 190 of file ossimImageHistogramSource.cpp.
References execute(), and ossimHistogramSource::theHistogram.
Referenced by getHistogram().
|
virtual |
Definition at line 75 of file ossimImageHistogramSource.cpp.
References theMaxNumberOfResLevels.
|
virtual |
Implements ossimProcessInterface.
Definition at line 46 of file ossimImageHistogramSource.cpp.
|
virtual |
Implements ossimProcessInterface.
Definition at line 51 of file ossimImageHistogramSource.cpp.
|
virtual |
Method to the load (recreate) the state of the object from a keyword list. Return true if ok or false on error.
Reimplemented from ossimHistogramSource.
Definition at line 605 of file ossimImageHistogramSource.cpp.
References ossimString::downcase(), ossimString::empty(), ossimKeywordlist::find(), ossimConnectableObject::getNumberOfInputs(), ossimHistogramSource::loadState(), ossimIrect::loadState(), OSSIM_HISTO_MODE_FAST, OSSIM_HISTO_MODE_NORMAL, ossimConnectableObject::setNumberOfInputs(), theAreaOfInterest, theComputationMode, ossimConnectableObject::theInputListIsFixedFlag, and ossimConnectableObject::theOutputListIsFixedFlag.
|
virtual |
Reimplemented from ossimConnectableObjectListener.
Definition at line 180 of file ossimImageHistogramSource.cpp.
References theHistogramRecomputeFlag.
|
virtual |
Method to save the state of the object to a keyword list. Return true if ok or false on error.
Reimplemented from ossimHistogramSource.
Definition at line 649 of file ossimImageHistogramSource.cpp.
References ossimHistogramSource::saveState(), ossimIrect::saveState(), and theAreaOfInterest.
void ossimImageHistogramSource::setAreaOfInterest | ( | const ossimIrect & | rect | ) |
Definition at line 56 of file ossimImageHistogramSource.cpp.
References theAreaOfInterest, and theHistogramRecomputeFlag.
void ossimImageHistogramSource::setComputationMode | ( | ossimHistogramMode | mode | ) |
Definition at line 175 of file ossimImageHistogramSource.cpp.
References theComputationMode.
Referenced by ossimImageHandler::buildHistogram(), and ossimKMeansFilter::initialize().
|
virtual |
Definition at line 80 of file ossimImageHistogramSource.cpp.
References theHistogramRecomputeFlag, and theMaxNumberOfResLevels.
Referenced by ossimImageHandler::buildHistogram(), ossimKMeansFilter::initialize(), and ossimImageFileWriter::writeHistogramFile().
void ossimImageHistogramSource::setMaxValueOverride | ( | ossim_float32 | maxValueOverride | ) |
Definition at line 165 of file ossimImageHistogramSource.cpp.
References theMaxValueOverride.
void ossimImageHistogramSource::setMinValueOverride | ( | ossim_float32 | minValueOverride | ) |
Definition at line 161 of file ossimImageHistogramSource.cpp.
References theMinValueOverride.
void ossimImageHistogramSource::setNumberOfBinsOverride | ( | ossim_int32 | numberOfBinsOverride | ) |
Definition at line 156 of file ossimImageHistogramSource.cpp.
References theNumberOfBinsOverride.
void ossimImageHistogramSource::setNumberOfTiles | ( | ossim_uint32 | numberOfTiles | ) |
|
protected |
Initialized to ossimNAN'S
Definition at line 91 of file ossimImageHistogramSource.h.
Referenced by computeFastModeHistogram(), computeNormalModeHistogram(), execute(), getAreaOfInterest(), getHistogram(), loadState(), ossimImageHistogramSource(), saveState(), and setAreaOfInterest().
|
protected |
Definition at line 102 of file ossimImageHistogramSource.h.
Referenced by execute(), getComputationMode(), loadState(), and setComputationMode().
|
protected |
Definition at line 92 of file ossimImageHistogramSource.h.
Referenced by connectInputEvent(), execute(), getHistogram(), propertyEvent(), setAreaOfInterest(), and setMaxNumberOfRLevels().
|
protected |
Will default to 1. This means it will use up to max number of res levels for the histogram.
Definition at line 98 of file ossimImageHistogramSource.h.
Referenced by computeNormalModeHistogram(), getMaxNumberOfRLevels(), and setMaxNumberOfRLevels().
|
protected |
Definition at line 100 of file ossimImageHistogramSource.h.
Referenced by ossimImageHistogramSource(), and setMaxValueOverride().
|
protected |
Definition at line 99 of file ossimImageHistogramSource.h.
Referenced by ossimImageHistogramSource(), and setMinValueOverride().
|
protected |
Definition at line 101 of file ossimImageHistogramSource.h.
Referenced by ossimImageHistogramSource(), and setNumberOfBinsOverride().