![]() |
ITK
4.4.0
Insight Segmentation and Registration Toolkit
|
#include <itkRBFLayer.h>
Inheritance diagram for itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >:
Collaboration diagram for itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >:This is the itkRBFLayer class.
Definition at line 39 of file itkRBFLayer.h.
Public Member Functions | |
| virtual ValueType | Activation (ValueType) |
| virtual void | BackwardPropagate () |
| virtual void | BackwardPropagate (TTargetVector) |
| virtual ValueType | DActivation (ValueType) |
| virtual void | ForwardPropagate () |
| virtual void | ForwardPropagate (TMeasurementVector input) |
| InternalVectorType | GetCenter (unsigned int i) const |
| virtual const DistanceMetricType * | GetDistanceMetric () const |
| virtual ValueType | GetInputErrorValue (unsigned int node_id) const |
| virtual ValueType * | GetInputErrorVector () |
| virtual ValueType | GetInputValue (unsigned int i) const |
| virtual DistanceMetricType * | GetModifiableDistanceMetric () |
| virtual RBFType * | GetModifiableRBF () |
| virtual const unsigned int & | GetNumClasses () |
| virtual ValueType | GetOutputErrorValue (unsigned int node_id) const |
| virtual ValueType | GetOutputValue (unsigned int) const |
| virtual ValueType * | GetOutputVector () |
| ValueType | GetRadii (unsigned int i) const |
| virtual const RBFType * | GetRBF () const |
| virtual const unsigned int & | GetRBF_Dim () |
| void | SetCenter (TMeasurementVector c, unsigned int i) |
| void | SetDistanceMetric (DistanceMetricType *f) |
| virtual void | SetInputErrorValue (ValueType, unsigned int node_id) |
| void | SetInputValue (unsigned int i, ValueType value) |
| virtual void | SetNumberOfNodes (unsigned int numNodes) |
| virtual void | SetNumClasses (unsigned int _arg) |
| virtual void | SetOutputErrorValues (TTargetVector) |
| virtual void | SetOutputValue (unsigned int, ValueType) |
| void | SetOutputVector (TMeasurementVector value) |
| void | SetRadii (ValueType c, unsigned int i) |
| void | SetRBF (RBFType *f) |
| void | SetRBF_Dim (unsigned int size) |
| virtual void | SetBias (ValueType _arg) |
| virtual const ValueType & | GetBias () |
Public Member Functions inherited from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector > | |
| virtual void | BackwardPropagate (InternalVectorType) |
| virtual const TransferFunctionInterfaceType * | GetActivationFunction () const |
| virtual const WeightSetInterfaceType * | GetInputWeightSet () const |
| virtual const unsigned int & | GetLayerId () |
| virtual LayerTypeCode | GetLayerTypeCode () const |
| virtual TransferFunctionInterfaceType * | GetModifiableActivationFunction () |
| virtual WeightSetInterfaceType * | GetModifiableInputWeightSet () |
| virtual InputFunctionInterfaceType * | GetModifiableNodeInputFunction () |
| virtual WeightSetInterfaceType * | GetModifiableOutputWeightSet () |
| virtual const InputFunctionInterfaceType * | GetNodeInputFunction () const |
| unsigned int | GetNumberOfNodes () const |
| virtual const WeightSetInterfaceType * | GetOutputWeightSet () const |
| void | SetInputWeightSet (WeightSetInterfaceType *) |
| virtual void | SetLayerId (unsigned int _arg) |
| virtual void | SetLayerTypeCode (const LayerTypeCode _arg) |
| void | SetNodeInputFunction (InputFunctionInterfaceType *f) |
| void | SetOutputWeightSet (WeightSetInterfaceType *) |
| void | SetTransferFunction (TransferFunctionInterfaceType *f) |
Public Member Functions inherited from itk::LightProcessObject | |
| virtual void | AbortGenerateDataOff () |
| virtual void | AbortGenerateDataOn () |
| virtual const bool & | GetAbortGenerateData () |
| virtual void | SetAbortGenerateData (bool _arg) |
| virtual void | UpdateOutputData () |
| void | UpdateProgress (float amount) |
| virtual void | SetProgress (float _arg) |
| virtual const float & | GetProgress () |
Public Member Functions inherited from itk::Object | |
| unsigned long | AddObserver (const EventObject &event, Command *) |
| unsigned long | AddObserver (const EventObject &event, Command *) const |
| virtual void | DebugOff () const |
| virtual void | DebugOn () const |
| Command * | GetCommand (unsigned long tag) |
| bool | GetDebug () const |
| MetaDataDictionary & | GetMetaDataDictionary (void) |
| const MetaDataDictionary & | GetMetaDataDictionary (void) const |
| virtual ModifiedTimeType | GetMTime () const |
| virtual const TimeStamp & | GetTimeStamp () const |
| bool | HasObserver (const EventObject &event) const |
| void | InvokeEvent (const EventObject &) |
| void | InvokeEvent (const EventObject &) const |
| virtual void | Modified () const |
| virtual void | Register () const |
| void | RemoveAllObservers () |
| void | RemoveObserver (unsigned long tag) |
| void | SetDebug (bool debugFlag) const |
| void | SetMetaDataDictionary (const MetaDataDictionary &rhs) |
| virtual void | SetReferenceCount (int) |
| virtual void | UnRegister () const |
Public Member Functions inherited from itk::LightObject | |
| virtual void | Delete () |
| virtual int | GetReferenceCount () const |
| itkCloneMacro (Self) | |
| void | Print (std::ostream &os, Indent indent=0) const |
Protected Member Functions | |
| virtual void | PrintSelf (std::ostream &os, Indent indent) const |
| RBFLayer () | |
| virtual | ~RBFLayer () |
Protected Member Functions inherited from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector > | |
| LayerBase () | |
| ~LayerBase () | |
Protected Member Functions inherited from itk::LightProcessObject | |
| virtual void | GenerateData () |
| LightProcessObject () | |
| ~LightProcessObject () | |
Protected Member Functions inherited from itk::Object | |
| Object () | |
| bool | PrintObservers (std::ostream &os, Indent indent) const |
| virtual void | SetTimeStamp (const TimeStamp &time) |
| virtual | ~Object () |
Protected Member Functions inherited from itk::LightObject | |
| virtual LightObject::Pointer | InternalClone () const |
| LightObject () | |
| virtual void | PrintHeader (std::ostream &os, Indent indent) const |
| virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
| virtual | ~LightObject () |
Private Attributes | |
| ValueType | m_Bias |
| std::vector< InternalVectorType > | m_Centers |
| DistanceMetricType::Pointer | m_DistanceMetric |
| NodeVectorType | m_InputErrorValues |
| NodeVectorType | m_NodeInputValues |
| NodeVectorType | m_NodeOutputValues |
| unsigned int | m_NumClasses |
| NodeVectorType | m_OutputErrorValues |
| InternalVectorType | m_Radii |
| RBFType::Pointer | m_RBF |
| unsigned int | m_RBF_Dim |
| virtual const char * | GetNameOfClass () const |
| virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
| static Pointer | New () |
Additional Inherited Members | |
Static Public Member Functions inherited from itk::LightProcessObject | |
| static Pointer | New () |
Protected Types inherited from itk::LightObject | |
| typedef int | InternalReferenceCountType |
Protected Attributes inherited from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector > | |
| TransferFunctionInterfaceType::Pointer | m_ActivationFunction |
| WeightSetInterfaceType::Pointer | m_InputWeightSet |
| unsigned int | m_LayerId |
| LayerTypeCode | m_LayerTypeCode |
| InputFunctionInterfaceType::Pointer | m_NodeInputFunction |
| unsigned int | m_NumberOfNodes |
| WeightSetInterfaceType::Pointer | m_OutputWeightSet |
| typedef SmartPointer<const Self> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::ConstPointer |
Definition at line 45 of file itkRBFLayer.h.
| typedef DistanceMetricType::Pointer itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::DistanceMetricPointer |
Definition at line 67 of file itkRBFLayer.h.
| typedef EuclideanDistanceMetric<InternalVectorType> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::DistanceMetricType |
Definition at line 66 of file itkRBFLayer.h.
| typedef Superclass::InputFunctionInterfaceType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::InputFunctionInterfaceType |
Definition at line 62 of file itkRBFLayer.h.
| typedef Superclass::InternalVectorType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::InternalVectorType |
Definition at line 55 of file itkRBFLayer.h.
| typedef Superclass::LayerInterfaceType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::LayerInterfaceType |
Definition at line 57 of file itkRBFLayer.h.
| typedef vnl_vector<ValueType> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::NodeVectorType |
Definition at line 54 of file itkRBFLayer.h.
| typedef Superclass::OutputVectorType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::OutputVectorType |
Definition at line 56 of file itkRBFLayer.h.
| typedef SmartPointer<Self> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::Pointer |
Definition at line 44 of file itkRBFLayer.h.
| typedef RadialBasisFunctionBase<ValueType> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::RBFType |
Definition at line 68 of file itkRBFLayer.h.
| typedef RBFLayer itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::Self |
Definition at line 42 of file itkRBFLayer.h.
| typedef LayerBase<TMeasurementVector, TTargetVector> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::Superclass |
Definition at line 43 of file itkRBFLayer.h.
| typedef Superclass::TransferFunctionInterfaceType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::TransferFunctionInterfaceType |
Definition at line 63 of file itkRBFLayer.h.
| typedef Superclass::ValuePointer itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::ValuePointer |
Definition at line 53 of file itkRBFLayer.h.
| typedef Superclass::ValueType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::ValueType |
Definition at line 49 of file itkRBFLayer.h.
| typedef Superclass::WeightSetInterfaceType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::WeightSetInterfaceType |
Definition at line 61 of file itkRBFLayer.h.
| typedef CompletelyConnectedWeightSet<TMeasurementVector,TTargetVector> itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::WeightSetType |
Definition at line 59 of file itkRBFLayer.h.
|
protected |
|
protectedvirtual |
|
virtual |
|
virtual |
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
inlinevirtual |
Definition at line 87 of file itkRBFLayer.h.
|
virtual |
Method for creation through the object factory.
Reimplemented from itk::LightProcessObject.
|
virtual |
|
virtual |
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
virtual |
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
virtual |
Set/Get the bias
| InternalVectorType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::GetCenter | ( | unsigned int | i | ) | const |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
Method for creation through the object factory.
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
virtual |
|
virtual |
|
virtual |
|
virtual |
| ValueType itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::GetRadii | ( | unsigned int | i | ) | const |
|
virtual |
|
virtual |
|
static |
Method for creation through the object factory.
|
protectedvirtual |
Method to print the object.
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
virtual |
Set/Get the bias
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetCenter | ( | TMeasurementVector | c, |
| unsigned int | i | ||
| ) |
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetDistanceMetric | ( | DistanceMetricType * | f | ) |
|
virtual |
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetInputValue | ( | unsigned int | i, |
| ValueType | value | ||
| ) |
|
virtual |
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
virtual |
|
virtual |
Reimplemented from itk::Statistics::LayerBase< TMeasurementVector, TTargetVector >.
|
virtual |
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetOutputVector | ( | TMeasurementVector | value | ) |
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetRadii | ( | ValueType | c, |
| unsigned int | i | ||
| ) |
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetRBF | ( | RBFType * | f | ) |
| void itk::Statistics::RBFLayer< TMeasurementVector, TTargetVector >::SetRBF_Dim | ( | unsigned int | size | ) |
|
private |
Definition at line 140 of file itkRBFLayer.h.
|
private |
Definition at line 137 of file itkRBFLayer.h.
|
private |
Definition at line 135 of file itkRBFLayer.h.
|
private |
Definition at line 132 of file itkRBFLayer.h.
|
private |
Definition at line 130 of file itkRBFLayer.h.
|
private |
Definition at line 131 of file itkRBFLayer.h.
|
private |
Definition at line 139 of file itkRBFLayer.h.
|
private |
Definition at line 133 of file itkRBFLayer.h.
|
private |
Definition at line 138 of file itkRBFLayer.h.
|
private |
Definition at line 142 of file itkRBFLayer.h.
|
private |
Definition at line 141 of file itkRBFLayer.h.
1.8.3.1