ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkScalarImageToRunLengthFeaturesFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkScalarImageToRunLengthFeaturesFilter_h
19#define itkScalarImageToRunLengthFeaturesFilter_h
20
22
25
26namespace itk
27{
28namespace Statistics
29{
84
85template <typename TImageType, typename THistogramFrequencyContainer = DenseFrequencyContainer2>
86class ITK_TEMPLATE_EXPORT ScalarImageToRunLengthFeaturesFilter : public ProcessObject
87{
88public:
94
96 itkOverrideGetNameOfClassMacro(ScalarImageToRunLengthFeaturesFilter);
97
99 itkNewMacro(Self);
100
101 using FrequencyContainerType = THistogramFrequencyContainer;
102 using ImageType = TImageType;
103 using ImagePointer = typename ImageType::Pointer;
104
105 using PixelType = typename ImageType::PixelType;
106 using OffsetType = typename ImageType::OffsetType;
110
112
114
116
117 // More work needs to be done to fix wrapping
118 // using RunLengthFeatureName = itk::Statistics::RunLengthFeatureEnum;
119 using RunLengthFeatureName = uint8_t;
125
128
131
134
137
141 void
143
144 const ImageType *
145 GetInput() const;
146
149 itkGetConstReferenceObjectMacro(FeatureMeans, FeatureValueVector);
150 itkGetConstReferenceObjectMacro(FeatureStandardDeviations, FeatureValueVector);
152
155 itkSetConstObjectMacro(RequestedFeatures, FeatureNameVector);
156 itkGetConstObjectMacro(RequestedFeatures, FeatureNameVector);
158
162 itkSetConstObjectMacro(Offsets, OffsetVector);
163 itkGetConstObjectMacro(Offsets, OffsetVector);
165
168 void
170
173 void
175
178 void
179 SetDistanceValueMinMax(double min, double max);
180
183 void
185
186 const ImageType *
188
191 void
193
194 itkGetConstMacro(FastCalculations, bool);
195 itkSetMacro(FastCalculations, bool);
196 itkBooleanMacro(FastCalculations);
197
198protected:
201 void
202 PrintSelf(std::ostream & os, Indent indent) const override;
203
204 void
206
207 void
209
211 void
212 GenerateData() override;
213
218
219private:
221
227};
228} // end of namespace Statistics
229} // end of namespace itk
230
231#ifndef ITK_MANUAL_INSTANTIATION
232# include "itkScalarImageToRunLengthFeaturesFilter.hxx"
233#endif
234
235#endif
Decorates any subclass of itkObject with a DataObject API.
SmartPointer< Self > Pointer
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void SetInput(const DataObjectIdentifierType &key, DataObject *input)
Protected method for setting indexed and named inputs.
DataObjectPointerArray::size_type DataObjectPointerArraySizeType
virtual DataObjectPointer MakeOutput(DataObjectPointerArraySizeType idx)
Make a DataObject of the correct type to used as the specified output.
Implements transparent reference counting.
This class computes texture feature coefficients from a grey level run-length matrix.
ProcessObject::DataObjectPointerArraySizeType DataObjectPointerArraySizeType
void SetInsidePixelValue(PixelType insidePixelValue)
HistogramToRunLengthFeaturesFilter< HistogramType > RunLengthFeaturesFilterType
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType) override
Make a DataObject of the correct type to used as the specified output.
void PrintSelf(std::ostream &os, Indent indent) const override
VectorContainer< unsigned char, RunLengthFeatureName > FeatureNameVector
void SetPixelValueMinMax(PixelType min, PixelType max)
const FeatureValueVectorDataObjectType * GetFeatureStandardDeviationsOutput() const
ScalarImageToRunLengthMatrixFilter< ImageType, FrequencyContainerType > RunLengthMatrixFilterType
const FeatureValueVectorDataObjectType * GetFeatureMeansOutput() const
This class computes a run length matrix (histogram) from a given image and a mask image if provided....
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
detail::VectorContainer< std::conditional_t< std::is_void_v< T2 >, SizeValueType, T1 >, std::conditional_t< std::is_void_v< T2 >, T1, T2 > > VectorContainer