ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkHistogramToTextureFeaturesFilter.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 itkHistogramToTextureFeaturesFilter_h
19#define itkHistogramToTextureFeaturesFilter_h
20
21#include "itkHistogram.h"
22#include "itkMacro.h"
23#include "itkProcessObject.h"
25
26namespace itk
27{
28namespace Statistics
29{
54// Define how to print enumeration
55extern ITKStatistics_EXPORT std::ostream &
57
116template <typename THistogram>
117class ITK_TEMPLATE_EXPORT HistogramToTextureFeaturesFilter : public ProcessObject
118{
119public:
120 ITK_DISALLOW_COPY_AND_MOVE(HistogramToTextureFeaturesFilter);
121
127
129 itkOverrideGetNameOfClassMacro(HistogramToTextureFeaturesFilter);
130
132 itkNewMacro(Self);
133
134 using HistogramType = THistogram;
135 using HistogramPointer = typename HistogramType::Pointer;
136 using HistogramConstPointer = typename HistogramType::ConstPointer;
137 using MeasurementType = typename HistogramType::MeasurementType;
138 using MeasurementVectorType = typename HistogramType::MeasurementVectorType;
139 using IndexType = typename HistogramType::IndexType;
140 using AbsoluteFrequencyType = typename HistogramType::AbsoluteFrequencyType;
141 using RelativeFrequencyType = typename HistogramType::RelativeFrequencyType;
142
143 using TotalAbsoluteFrequencyType = typename HistogramType::TotalAbsoluteFrequencyType;
144
145 using TotalRelativeFrequencyType = typename HistogramType::TotalRelativeFrequencyType;
146
148 using RelativeFrequencyContainerType = std::vector<RelativeFrequencyType>;
149
152 void
153 SetInput(const HistogramType * histogram);
154
155 const HistogramType *
156 GetInput() const;
157
160
163
166 GetEnergy() const;
167
170
173 GetEntropy() const;
174
177
181
184
188
191
194 GetInertia() const;
195
198
202
205
209
212
216
219
221#if !defined(ITK_LEGACY_REMOVE)
223 static constexpr TextureFeatureEnum Energy = TextureFeatureEnum::Energy;
224 static constexpr TextureFeatureEnum Entropy = TextureFeatureEnum::Entropy;
225 static constexpr TextureFeatureEnum Correlation = TextureFeatureEnum::Correlation;
226 static constexpr TextureFeatureEnum InverseDifferenceMoment = TextureFeatureEnum::InverseDifferenceMoment;
227 static constexpr TextureFeatureEnum Inertia = TextureFeatureEnum::Inertia;
228 static constexpr TextureFeatureEnum ClusterShade = TextureFeatureEnum::ClusterShade;
229 static constexpr TextureFeatureEnum ClusterProminence = TextureFeatureEnum::ClusterProminence;
230 static constexpr TextureFeatureEnum HaralickCorrelation = TextureFeatureEnum::HaralickCorrelation;
231 static constexpr TextureFeatureEnum InvalidFeatureName = TextureFeatureEnum::InvalidFeatureName;
232#endif
233
237
238protected:
241 void
242 PrintSelf(std::ostream & os, Indent indent) const override;
243
248
249 void
250 GenerateData() override;
251
252private:
253 void
254 ComputeMeansAndVariances(double & pixelMean,
255 double & marginalMean,
256 double & marginalDevSquared,
257 double & pixelVariance);
258
260};
261} // end of namespace Statistics
262} // end of namespace itk
263
264#ifndef ITK_MANUAL_INSTANTIATION
265# include "itkHistogramToTextureFeaturesFilter.hxx"
266#endif
267
268#endif
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.
Decorates any "simple" data type (data types without smart pointers) with a DataObject API.
Implements transparent reference counting.
This class contains all enum classes used by HistogramToTextureFeaturesFilter class.
typename HistogramType::TotalAbsoluteFrequencyType TotalAbsoluteFrequencyType
DataObjectPointer MakeOutput(DataObjectPointerArraySizeType) override
Make a DataObject of the correct type to used as the specified output.
const MeasurementObjectType * GetHaralickCorrelationOutput() const
const MeasurementObjectType * GetEnergyOutput() const
typename HistogramType::AbsoluteFrequencyType AbsoluteFrequencyType
void SetInput(const HistogramType *histogram)
void PrintSelf(std::ostream &os, Indent indent) const override
ProcessObject::DataObjectPointerArraySizeType DataObjectPointerArraySizeType
const MeasurementObjectType * GetInertiaOutput() const
typename HistogramType::TotalRelativeFrequencyType TotalRelativeFrequencyType
const MeasurementObjectType * GetCorrelationOutput() const
const MeasurementObjectType * GetClusterShadeOutput() const
SimpleDataObjectDecorator< MeasurementType > MeasurementObjectType
MeasurementType GetFeature(TextureFeatureEnum feature)
HistogramToTextureFeaturesFilterEnums::TextureFeature TextureFeatureEnum
const MeasurementObjectType * GetClusterProminenceOutput() const
void ComputeMeansAndVariances(double &pixelMean, double &marginalMean, double &marginalDevSquared, double &pixelVariance)
const MeasurementObjectType * GetInverseDifferenceMomentOutput() const
typename HistogramType::MeasurementVectorType MeasurementVectorType
const MeasurementObjectType * GetEntropyOutput() const
typename HistogramType::RelativeFrequencyType RelativeFrequencyType
ITKStatistics_EXPORT std::ostream & operator<<(std::ostream &out, const ExpectationMaximizationMixtureModelEstimatorEnums::TERMINATION_CODE value)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....