ITK  4.5.0
Insight Segmentation and Registration Toolkit
itkMeanSampleFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef __itkMeanSampleFilter_h
19 #define __itkMeanSampleFilter_h
20 
21 #include "itkProcessObject.h"
22 #include "itkArray.h"
24 
25 namespace itk
26 {
27 namespace Statistics
28 {
47 template< typename TSample >
49 {
50 public:
56  typedef TSample SampleType;
57 
59  itkTypeMacro(MeanSampleFilter, ProcessObject);
60  itkNewMacro(Self);
62 
64  typedef unsigned int MeasurementVectorSizeType;
65  typedef typename TSample::MeasurementVectorType MeasurementVectorType;
66  typedef typename TSample::MeasurementType MeasurementType;
69 
72  void SetInput(const SampleType *sample);
73 
74  const SampleType * GetInput() const;
75 
79 
81 
84 
85  const MeasurementVectorRealType GetMean() const;
86 
88 
89 protected:
91  virtual ~MeanSampleFilter();
92  void PrintSelf(std::ostream & os, Indent indent) const;
93 
96 
100 
101  void GenerateData();
102 
103 private:
104  MeanSampleFilter(const Self &); //purposely not implemented
105  void operator=(const Self &); //purposely not implemented
106 }; // end of class
107 } // end of namespace Statistics
108 } // end of namespace itk
109 
110 #ifndef ITK_MANUAL_INSTANTIATION
111 #include "itkMeanSampleFilter.hxx"
112 #endif
113 
114 #endif
MeasurementVectorDecoratedType OutputType
Light weight base class for most itk classes.
void PrintSelf(std::ostream &os, Indent indent) const
NumericTraits< MeasurementVectorType >::RealType MeasurementVectorRealType
ProcessObject::DataObjectPointerArraySizeType DataObjectPointerArraySizeType
SmartPointer< const Self > ConstPointer
SimpleDataObjectDecorator< MeasurementVectorRealType > MeasurementVectorDecoratedType
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
NumericTraits< MeasurementType >::RealType MeasurementRealType
const MeasurementVectorRealType GetMean() const
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx)
const SampleType * GetInput() const
TSample::MeasurementVectorType MeasurementVectorType
Decorates any &quot;simple&quot; data type (data types without smart pointers) with a DataObject API...
DataObjectPointerArray::size_type DataObjectPointerArraySizeType
virtual void SetInput(const DataObjectIdentifierType &key, DataObject *input)
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx)
TSample::MeasurementType MeasurementType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Given a sample, this filter computes the sample mean.
void SetInput(const SampleType *sample)
MeasurementVectorSizeType GetMeasurementVectorSize() const
const MeasurementVectorDecoratedType * GetOutput() const