ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkGaussianRandomSpatialNeighborSubsampler.h>
Public Types | |
typedef Superclass::Baseclass | Baseclass |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::ImageHelperType | ImageHelperType |
typedef Superclass::IndexType | IndexType |
typedef Superclass::InstanceIdentifier | InstanceIdentifier |
typedef Superclass::InstanceIdentifierHolder | InstanceIdentifierHolder |
typedef Superclass::MeasurementVectorType | MeasurementVectorType |
typedef SmartPointer< Self > | Pointer |
typedef Superclass::RadiusType | RadiusType |
typedef Superclass::RandomGeneratorType | RandomGeneratorType |
typedef Superclass::RandomIntType | RandomIntType |
typedef double | RealType |
typedef Superclass::RegionType | RegionType |
typedef Superclass::SampleConstPointer | SampleConstPointer |
typedef Superclass::SampleType | SampleType |
typedef Superclass::SearchSizeType | SearchSizeType |
typedef GaussianRandomSpatialNeighborSubsampler < TSample, TRegion > | Self |
typedef Superclass::SizeType | SizeType |
typedef Superclass::SubsampleConstIterator | SubsampleConstIterator |
typedef Superclass::SubsamplePointer | SubsamplePointer |
typedef Superclass::SubsampleType | SubsampleType |
typedef UniformRandomSpatialNeighborSubsampler < TSample, TRegion > | Superclass |
Public Types inherited from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion > | |
typedef Superclass::IndexValueType | IndexValueType |
typedef Baseclass::SeedType | SeedType |
Public Types inherited from itk::Statistics::SpatialNeighborSubsampler< TSample, TRegion > | |
Public Types inherited from itk::Statistics::RegionConstrainedSubsampler< TSample, TRegion > | |
Public Types inherited from itk::Statistics::SubsamplerBase< TSample > | |
Public Types inherited from itk::Object | |
Public Types inherited from itk::LightObject |
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
virtual RealType | GetVariance () const |
virtual void | SetVariance (RealType _arg) |
Public Member Functions inherited from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion > | |
virtual SearchSizeType | GetNumberOfResultsRequested () const |
virtual bool | GetUseClockForSeed () const |
virtual void | Search (const InstanceIdentifier &query, SubsamplePointer &results) |
virtual void | SetNumberOfResultsRequested (const SearchSizeType &numberRequested) |
virtual void | SetSeed (const SeedType seed) |
virtual void | SetUseClockForSeed (const bool &useClock) |
virtual void | UseClockForSeedOff () |
virtual void | UseClockForSeedOn () |
Public Member Functions inherited from itk::Statistics::SpatialNeighborSubsampler< TSample, TRegion > | |
virtual const RadiusType & | GetRadius () |
virtual const bool & | GetRadiusInitialized () |
void | SetRadius (const RadiusType &radius) |
void | SetRadius (unsigned int radius) |
Public Member Functions inherited from itk::Statistics::RegionConstrainedSubsampler< TSample, TRegion > | |
virtual const RegionType & | GetRegionConstraint () |
virtual const bool & | GetRegionConstraintInitialized () |
virtual const RegionType & | GetSampleRegion () |
virtual const bool & | GetSampleRegionInitialized () |
void | SetRegionConstraint (const RegionType ®ion) |
void | SetSampleRegion (const RegionType ®ion) |
Public Member Functions inherited from itk::Statistics::SubsamplerBase< TSample > | |
itkCloneMacro (Self) | |
virtual void | SetSample (const SampleType *_arg) |
virtual const SampleType * | GetSample () |
virtual void | SetCanSelectQuery (bool _arg) |
virtual const bool & | GetCanSelectQuery () |
virtual void | CanSelectQueryOn () |
virtual void | CanSelectQueryOff () |
virtual const SeedType & | GetSeed () |
virtual void | RequestMaximumNumberOfResults () |
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 unsigned long | 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 |
void | Print (std::ostream &os, Indent indent=0) const |
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const RealType | DefaultVariance = 900 |
Protected Attributes | |
RealType | m_Variance |
Protected Attributes inherited from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion > | |
SearchSizeType | m_NumberOfResultsRequested |
RandomGeneratorType::Pointer | m_RandomNumberGenerator |
bool | m_UseClockForSeed |
Protected Attributes inherited from itk::Statistics::SpatialNeighborSubsampler< TSample, TRegion > | |
RadiusType | m_Radius |
bool | m_RadiusInitialized |
Protected Attributes inherited from itk::Statistics::RegionConstrainedSubsampler< TSample, TRegion > | |
RegionType | m_RegionConstraint |
bool | m_RegionConstraintInitialized |
RegionType | m_SampleRegion |
bool | m_SampleRegionInitialized |
Protected Attributes inherited from itk::Statistics::SubsamplerBase< TSample > | |
bool | m_CanSelectQuery |
bool | m_RequestMaximumNumberOfResults |
SampleConstPointer | m_Sample |
SeedType | m_Seed |
Private Member Functions | |
GaussianRandomSpatialNeighborSubsampler (const Self &) | |
void | operator= (const Self &) |
A subsampler that randomly selects points according to a gaussian distribution within the specified radius of the query point.
This class derives from UniformRandomNeighborSubsampler and overrides the GetIntegerVariate method to randomly select points according to a gaussian distribution within the Radius given by SetRadius(radius) as long as that point is also within the RegionConstraint. Use SetVariance(variance) to provide the variance of the gaussian distribution.
Definition at line 45 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::Baseclass itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::Baseclass |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 51 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef SmartPointer<const Self> itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::ConstPointer |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 53 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::ImageHelperType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::ImageHelperType |
other helpful typedefs
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 80 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::IndexType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::IndexType |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 78 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::InstanceIdentifier itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::InstanceIdentifier |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 66 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::InstanceIdentifierHolder itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::InstanceIdentifierHolder |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 71 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::MeasurementVectorType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::MeasurementVectorType |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 65 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef SmartPointer<Self> itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::Pointer |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 52 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::RadiusType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::RadiusType |
typedefs related to image region
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 76 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::RandomGeneratorType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::RandomGeneratorType |
typedefs related to random variate generator
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 84 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::RandomIntType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::RandomIntType |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 74 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef double itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::RealType |
Definition at line 82 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::RegionType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::RegionType |
typedefs related to region
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 77 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SampleConstPointer itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SampleConstPointer |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 64 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SampleType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SampleType |
typedef alias for the source data container
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 60 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SearchSizeType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SearchSizeType |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 73 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef GaussianRandomSpatialNeighborSubsampler<TSample, TRegion> itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::Self |
Standard class typedefs
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 49 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SizeType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SizeType |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 79 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SubsampleConstIterator itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SubsampleConstIterator |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 70 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SubsamplePointer itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SubsamplePointer |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 69 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef Superclass::SubsampleType itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::SubsampleType |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 68 of file itkGaussianRandomSpatialNeighborSubsampler.h.
typedef UniformRandomSpatialNeighborSubsampler<TSample, TRegion> itk::Statistics::GaussianRandomSpatialNeighborSubsampler< TSample, TRegion >::Superclass |
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
Definition at line 50 of file itkGaussianRandomSpatialNeighborSubsampler.h.
|
protected |
|
inlineprotectedvirtual |
Definition at line 103 of file itkGaussianRandomSpatialNeighborSubsampler.h.
|
private |
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
|
protectedvirtual |
method to randomly generate an integer in the closed range [0, upperBound] usign a gaussian selection method.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
|
virtual |
Get the variance
|
protectedvirtual |
Clone the current subsampler. This does a complete copy of the subsampler state to the new subsampler
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
|
static |
Method for creation through the object factory.
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
|
private |
Mutex lock to protect modification to the reference count
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
|
protectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::Statistics::UniformRandomSpatialNeighborSubsampler< TSample, TRegion >.
|
virtual |
Set the variance
|
static |
Default sampling variance
Definition at line 86 of file itkGaussianRandomSpatialNeighborSubsampler.h.
|
protected |
Definition at line 114 of file itkGaussianRandomSpatialNeighborSubsampler.h.