ITK
5.2.0
Insight Toolkit
|
#include <itkNumericTraits.h>
Public Types | |
using | AbsType = T |
using | AccumulateType = double |
using | FloatType = float |
using | MeasurementVectorType = FixedArray< ValueType, 1 > |
using | PrintType = T |
using | RealType = double |
using | ScalarRealType = RealType |
using | TraitsType = std::numeric_limits< T > |
using | ValueType = T |
Static Public Member Functions | |
template<typename TArray > | |
static void | AssignToArray (const T &v, TArray &mv) |
static unsigned int | GetLength () |
static unsigned int | GetLength (const T &) |
static bool | IsNegative (T val) |
static bool | IsNonnegative (T val) |
static bool | IsNonpositive (T val) |
static bool | IsPositive (T val) |
static constexpr T | max (const T &) |
static constexpr T | min (const T &) |
static constexpr T | NonpositiveMin () |
static T | NonpositiveMin (const T &) |
static T | OneValue () |
static T | OneValue (const T &) |
static void | SetLength (T &m, const unsigned int s) |
static T | ZeroValue () |
static T | ZeroValue (const T &) |
Static Public Attributes | |
static constexpr bool | IsComplex = false |
static constexpr bool | IsInteger = false |
static constexpr bool | IsSigned = false |
static const T ITKCommon_EXPORT | One |
static const T ITKCommon_EXPORT | Zero |
Define additional traits for native types such as int or float.
Define numeric traits for std::vector.
NumericTraits is used to extend the traits associated with native types such as float, char, int, and so on. These traits are extensions of the standard numeric_limits defined by the C++ compilers. Some of the added traits include minimum and maximum value; accumulation type; etc.
T | Component type of std::vector |
We provide here a generic implementation based on creating types of std::vector whose components are the types of the NumericTraits from the original std::vector components. This implementation require support for partial specializations, since it is based on the concept that: NumericTraits<std::vector< T > > is defined piecewise by std::vector< NumericTraits< T > >
Definition at line 58 of file itkNumericTraits.h.
using itk::NumericTraits< T >::AbsType = T |
Return value of std::abs().
Definition at line 71 of file itkNumericTraits.h.
using itk::NumericTraits< T >::AccumulateType = double |
Accumulation of addition and multiplication.
Definition at line 74 of file itkNumericTraits.h.
using itk::NumericTraits< T >::FloatType = float |
Typedef for operations that use floating point instead of real precision to save memory
Definition at line 81 of file itkNumericTraits.h.
using itk::NumericTraits< T >::MeasurementVectorType = FixedArray<ValueType, 1> |
Measurement vector type
Definition at line 77 of file itkNumericTraits.h.
using itk::NumericTraits< T >::PrintType = T |
Return the type that can be printed.
Definition at line 68 of file itkNumericTraits.h.
using itk::NumericTraits< T >::RealType = double |
Type for real-valued scalar operations.
Definition at line 84 of file itkNumericTraits.h.
using itk::NumericTraits< T >::ScalarRealType = RealType |
Type for real-valued scalar operations.
Definition at line 87 of file itkNumericTraits.h.
using itk::NumericTraits< T >::TraitsType = std::numeric_limits<T> |
The type of this limits trait object.
Definition at line 62 of file itkNumericTraits.h.
using itk::NumericTraits< T >::ValueType = T |
Return the type of this native type.
Definition at line 65 of file itkNumericTraits.h.
|
inlinestatic |
assign the value to an array
Definition at line 243 of file itkNumericTraits.h.
|
inlinestatic |
Return the length of the scalar: 1. Array types can return a different value
Definition at line 208 of file itkNumericTraits.h.
Referenced by itk::NumericTraits< Array< T > >::AssignToArray(), itk::NumericTraits< std::vector< T > >::AssignToArray(), itk::NumericTraits< SymmetricSecondRankTensor< T, D > >::AssignToArray(), itk::NumericTraits< VariableLengthVector< T > >::AssignToArray(), itk::NumericTraits< SymmetricSecondRankTensor< T, D > >::GetLength(), itk::NumericTraits< InputImagePixelType >::GetLength(), itk::NumericTraits< Vector< T, D > >::IsNegative(), itk::NumericTraits< VariableLengthVector< T > >::IsNegative(), itk::NumericTraits< Vector< T, D > >::IsNonnegative(), itk::NumericTraits< VariableLengthVector< T > >::IsNonnegative(), itk::NumericTraits< Vector< T, D > >::IsNonpositive(), itk::NumericTraits< VariableLengthVector< T > >::IsNonpositive(), itk::NumericTraits< Vector< T, D > >::IsPositive(), itk::NumericTraits< VariableLengthVector< T > >::IsPositive(), itk::Statistics::MeasurementVectorTraits::IsResizable(), itk::Statistics::MembershipFunctionBase< TMeasurementVector >::MembershipFunctionBase(), itk::Statistics::Sample< ImageJointDomainTraits< TImage >::MeasurementVectorType >::Sample(), itk::Statistics::KdTreeBasedKmeansEstimator< TKdTree >::CandidateVector::SetCentroids(), itk::Statistics::MembershipFunctionBase< TMeasurementVector >::SetMeasurementVectorSize(), itk::Statistics::DistanceMetric< Array< double > >::SetMeasurementVectorSize(), itk::Statistics::Sample< ImageJointDomainTraits< TImage >::MeasurementVectorType >::SetMeasurementVectorSize(), itk::GradientRecursiveGaussianImageFilter< TInputImage, TOutputImage >::TransformOutputPixel(), and itk::GTest::Predicate::VectorDoubleRMSPredFormat().
|
inlinestatic |
Return the length of the scalar. This API is needed for VariableLengthVector because its length is only known at run-time. Specializations of the VariableLengthVector will provide a different implementation where a vector of the correct size is built.
Definition at line 201 of file itkNumericTraits.h.
|
inlinestatic |
Is a given value negative?
Definition at line 118 of file itkNumericTraits.h.
Referenced by itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::NumericTraits< RGBPixel< T > >::IsNegative(), and itk::NumericTraits< RGBAPixel< T > >::IsNegative().
|
inlinestatic |
Is a given value nonnegative?
Definition at line 125 of file itkNumericTraits.h.
Referenced by itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::NumericTraits< RGBPixel< T > >::IsNonnegative(), and itk::NumericTraits< RGBAPixel< T > >::IsNonnegative().
|
inlinestatic |
Is a given value nonpositive?
Definition at line 111 of file itkNumericTraits.h.
Referenced by itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::NumericTraits< RGBPixel< T > >::IsNonpositive(), and itk::NumericTraits< RGBAPixel< T > >::IsNonpositive().
|
inlinestatic |
Is a given value positive?
Definition at line 104 of file itkNumericTraits.h.
Referenced by itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::NumericTraits< RGBPixel< T > >::IsPositive(), and itk::NumericTraits< RGBAPixel< T > >::IsPositive().
|
inlinestaticconstexpr |
Definition at line 167 of file itkNumericTraits.h.
Referenced by itk::AdaptiveHistogramEqualizationImageFilter< TImageType, TKernel >::AdaptiveHistogramEqualizationImageFilter(), itk::Functor::LabelToRGBFunctor< TLabelImage::PixelType, TOutputImage::PixelType >::AddColor(), itk::AnchorCloseImageFilter< TImage, TKernel >::AnchorCloseImageFilter(), itk::AnchorErodeImageFilter< TImage, TKernel >::AnchorErodeImageFilter(), itk::AnchorOpenImageFilter< TImage, TKernel >::AnchorOpenImageFilter(), itk::BinaryNotImageFilter< TImage >::BinaryNotImageFilter(), itk::BinaryProjectionImageFilter< TInputImage, TOutputImage >::BinaryProjectionImageFilter(), itk::Functor::BinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType >::BinaryThreshold(), itk::BinaryThresholdProjectionImageFilter< TInputImage, TOutputImage >::BinaryThresholdProjectionImageFilter(), itk::Function::ColormapFunction< TScalar, TRGBPixel >::ColormapFunction(), itk::Function::RankHistogram< TInputPixel >::GetValueBruteForce(), itk::Function::VectorRankHistogram< TInputPixel >::GetValueBruteForce(), itk::Functor::GPUBinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType >::GPUBinaryThreshold(), itk::HexahedronCell< TCellInterface >::HexahedronCell(), itk::Functor::MinimumAccumulator< TInputPixel >::Initialize(), itk::Functor::IntensityLinearTransform< TInputImage::PixelType, TOutputImage::PixelType >::IntensityLinearTransform(), itk::Functor::InvertIntensityTransform< TInputImage::PixelType, TOutputImage::PixelType >::InvertIntensityTransform(), itk::LabelGeometryImageFilter< TLabelImage, TIntensityImage >::LabelGeometry::LabelGeometry(), itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelStatistics::LabelStatistics(), itk::LineCell< TCellInterface >::LineCell(), itk::NumericTraits< std::vector< T > >::max(), itk::MovingHistogramErodeImageFilter< TInputImage, TOutputImage, TKernel >::MovingHistogramErodeImageFilter(), itk::MultiphaseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, unsigned int >::MultiphaseFiniteDifferenceImageFilter(), itk::Functor::ConstrainedValueAddition< TInput1, TInput2, TOutput >::operator()(), itk::Functor::Div< TInput1, TInput2, TOutput >::operator()(), itk::UnsharpMaskImageFilter< TInputImage, TOutputImage, TInternalPrecision >::UnsharpMaskingFunctor< InPixelType, FunctorRealType, OutPixelType >::operator()(), itk::Functor::Modulus< TInput1, TInput2, TOutput >::operator()(), itk::Functor::DivFloor< TInput1, TInput2, TOutput >::operator()(), itk::QuadraticEdgeCell< TCellInterface >::QuadraticEdgeCell(), itk::QuadraticTriangleCell< TCellInterface >::QuadraticTriangleCell(), itk::QuadrilateralCell< TCellInterface >::QuadrilateralCell(), itk::Function::RankHistogram< TInputPixel >::RankHistogram(), itk::ReconstructionByErosionImageFilter< TInputImage, TOutputImage >::ReconstructionByErosionImageFilter(), itk::Function::VectorMorphologicalGradientHistogram< TInputPixel >::RemovePixel(), itk::Statistics::SampleToHistogramFilter< TSample, THistogram >::SafeAssign(), itk::Functor::Sigmoid< TInputImage::PixelType, TOutputImage::PixelType >::Sigmoid(), itk::SimplexMeshAdaptTopologyFilter< TInputMesh, TOutputMesh >::SimplexCellVisitor::SimplexCellVisitor(), itk::STAPLEImageFilter< TInputImage, TOutputImage >::STAPLEImageFilter(), itk::TetrahedronCell< TCellInterface >::TetrahedronCell(), itk::ThresholdSegmentationLevelSetFunction< TImageType, TFeatureImageType >::ThresholdSegmentationLevelSetFunction(), itk::VanHerkGilWermanErodeImageFilter< TImage, TKernel >::VanHerkGilWermanErodeImageFilter(), itk::Function::VectorMorphologicalGradientHistogram< TInputPixel >::VectorMorphologicalGradientHistogram(), itk::Function::VectorMorphologyHistogram< TInputPixel, TCompare >::VectorMorphologyHistogram(), itk::Function::VectorRankHistogram< TInputPixel >::VectorRankHistogram(), and itk::VertexCell< TCellInterface >::VertexCell().
|
inlinestaticconstexpr |
Definition at line 172 of file itkNumericTraits.h.
Referenced by itk::AdaptiveHistogramEqualizationImageFilter< TImageType, TKernel >::AdaptiveHistogramEqualizationImageFilter(), itk::Function::ColormapFunction< TScalar, TRGBPixel >::ColormapFunction(), itk::NumericTraits< std::vector< T > >::min(), itk::Statistics::KdTree< TSample >::NearestNeighbors::ReplaceFarthestNeighbor(), itk::Statistics::SampleToHistogramFilter< TSample, THistogram >::SafeAssign(), and itk::Functor::Sigmoid< TInputImage::PixelType, TOutputImage::PixelType >::Sigmoid().
|
inlinestaticconstexpr |
Smallest (most nonpositive) value
Definition at line 97 of file itkNumericTraits.h.
Referenced by itk::Function::VectorMorphologicalGradientHistogram< TInputPixel >::AddPixel(), itk::Function::VectorMorphologyHistogram< TInputPixel, TCompare >::AddPixel(), itk::AnchorCloseImageFilter< TImage, TKernel >::AnchorCloseImageFilter(), itk::AnchorDilateImageFilter< TImage, TKernel >::AnchorDilateImageFilter(), itk::AnchorOpenImageFilter< TImage, TKernel >::AnchorOpenImageFilter(), itk::BinaryNotImageFilter< TImage >::BinaryNotImageFilter(), itk::BinaryProjectionImageFilter< TInputImage, TOutputImage >::BinaryProjectionImageFilter(), itk::Functor::BinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType >::BinaryThreshold(), itk::BinaryThresholdProjectionImageFilter< TInputImage, TOutputImage >::BinaryThresholdProjectionImageFilter(), itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::LevelSetMotionRegistrationFunction< TFixedImage, TMovingImage, TDisplacementField >::GetGlobalDataPointer(), itk::Function::VectorRankHistogram< TInputPixel >::GetValueBruteForce(), itk::Functor::GPUBinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType >::GPUBinaryThreshold(), itk::Functor::MaximumAccumulator< TInputPixel >::Initialize(), itk::Functor::IntensityLinearTransform< TInputImage::PixelType, TOutputImage::PixelType >::IntensityLinearTransform(), itk::LabelGeometryImageFilter< TLabelImage, TIntensityImage >::LabelGeometry::LabelGeometry(), itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelStatistics::LabelStatistics(), itk::MovingHistogramDilateImageFilter< TInputImage, TOutputImage, TKernel >::MovingHistogramDilateImageFilter(), itk::NumericTraits< Vector< T, D > >::NonpositiveMin(), itk::NumericTraits< Point< T, D > >::NonpositiveMin(), itk::NumericTraits< RGBAPixel< T > >::NonpositiveMin(), itk::NumericTraits< RGBPixel< T > >::NonpositiveMin(), itk::NumericTraits< SymmetricSecondRankTensor< T, D > >::NonpositiveMin(), itk::NumericTraits< std::vector< T > >::NonpositiveMin(), itk::NumericTraits< CovariantVector< T, D > >::NonpositiveMin(), itk::NumericTraits< FixedArray< T, D > >::NonpositiveMin(), itk::NumericTraits< InputImagePixelType >::NonpositiveMin(), itk::Functor::Maximum1< TInputImage::PixelType, TInputImage::PixelType >::operator()(), itk::Functor::ConstrainedValueAddition< TInput1, TInput2, TOutput >::operator()(), itk::Functor::ConstrainedValueDifference< TInput1, TInput2, TOutput >::operator()(), itk::UnsharpMaskImageFilter< TInputImage, TOutputImage, TInternalPrecision >::UnsharpMaskingFunctor< InPixelType, FunctorRealType, OutPixelType >::operator()(), itk::Functor::DivFloor< TInput1, TInput2, TOutput >::operator()(), itk::Function::RankHistogram< TInputPixel >::RankHistogram(), itk::ReconstructionByDilationImageFilter< TInputImage, TOutputImage >::ReconstructionByDilationImageFilter(), itk::Function::VectorMorphologicalGradientHistogram< TInputPixel >::RemovePixel(), itk::Function::VectorMorphologyHistogram< TInputPixel, TCompare >::RemovePixel(), itk::ThresholdSegmentationLevelSetFunction< TImageType, TFeatureImageType >::ThresholdSegmentationLevelSetFunction(), itk::VanHerkGilWermanDilateImageFilter< TImage, TKernel >::VanHerkGilWermanDilateImageFilter(), itk::Function::VectorMorphologicalGradientHistogram< TInputPixel >::VectorMorphologicalGradientHistogram(), itk::Function::VectorMorphologyHistogram< TInputPixel, TCompare >::VectorMorphologyHistogram(), and itk::Function::VectorRankHistogram< TInputPixel >::VectorRankHistogram().
|
inlinestatic |
Smallest (most nonpositive) value. This API is needed for VariableLengthVector because its length is only known at run-time.
Definition at line 217 of file itkNumericTraits.h.
|
inlinestatic |
Return one value. This function should be used to support RGBPixel type and standard types (not vectors)
Definition at line 156 of file itkNumericTraits.h.
Referenced by itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::LevelSetFunction< TImageType >::CurvatureSpeed(), itk::RegionBasedLevelSetFunction< TInputImage, TFeatureImage, TSharedData >::CurvatureSpeed(), itk::Functor::DivideOrZeroOut< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType >::DivideOrZeroOut(), itk::Path< TIndexValue, Index< VDimension >, VDimension >::EndOfInput(), itk::BSplineKernelFunction< VSplineOrder, TRealValueType >::Evaluate(), itk::BSplineDerivativeKernelFunction< VSplineOrder, TRealValueType >::Evaluate(), itk::NormalVectorDiffusionFunction< TSparseImageType >::FluxStopFunction(), itk::GaborKernelFunction< TRealValueType >::GaborKernelFunction(), itk::LevelSetFunction< TImageType >::LaplacianSmoothingSpeed(), itk::RegionBasedLevelSetFunction< TInputImage, TFeatureImage, TSharedData >::LaplacianSmoothingSpeed(), itk::Functor::LogicOpBase< TInput, TInput, TOutput >::LogicOpBase(), itk::NumericTraits< std::vector< T > >::OneValue(), itk::NumericTraits< Vector< T, D > >::OneValue(), itk::NumericTraits< Point< T, D > >::OneValue(), itk::NumericTraits< RGBPixel< T > >::OneValue(), itk::NumericTraits< RGBAPixel< T > >::OneValue(), itk::NumericTraits< SymmetricSecondRankTensor< T, D > >::OneValue(), itk::NumericTraits< CovariantVector< T, D > >::OneValue(), itk::NumericTraits< FixedArray< T, D > >::OneValue(), itk::NumericTraits< InputImagePixelType >::OneValue(), itk::Functor::InvertIntensityFunctor< InputPixelType >::operator()(), itk::Functor::LandweberMethod< TInput1, TInput2, TInput3, TOutput >::operator()(), itk::Functor::WeightedAdd2< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType >::SetAlpha(), itk::STAPLEImageFilter< TInputImage, TOutputImage >::STAPLEImageFilter(), and itk::Functor::ThresholdLabeler< TInputImage::PixelType, TOutputImage::PixelType >::ThresholdLabeler().
|
inlinestatic |
One value. This API is needed for VariableLengthVector because its length is only known at run-time.
Definition at line 235 of file itkNumericTraits.h.
|
inlinestatic |
Scalars cannot be resized, so an exception will be thrown if the input size is not 1. If the size is valid the will be zeros. This API is needed for VariableLengthVector because its length is only known at run-time. Specializations of the VariableLengthVector will provide a different implementation where a vector of the correct size is built.
Definition at line 185 of file itkNumericTraits.h.
Referenced by itk::Functor::LabelToRGBFunctor< TLabelImage::PixelType, TOutputImage::PixelType >::AddColor(), itk::Functor::LabelToRGBFunctor< TLabelImage::PixelType, TOutputImage::PixelType >::LabelToRGBFunctor(), itk::Functor::LabelOverlayFunctor< FeatureImagePixelType, LabelMapPixelType, OutputImagePixelType >::operator()(), and itk::Statistics::KdTreeBasedKmeansEstimator< TKdTree >::CandidateVector::SetCentroids().
|
inlinestatic |
Return zero value. This function should be used to support RGBPixel type and standard types (not vectors)
Definition at line 148 of file itkNumericTraits.h.
Referenced by itk::Functor::BinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType >::BinaryThreshold(), itk::BinaryThresholdProjectionImageFilter< TInputImage, TOutputImage >::BinaryThresholdProjectionImageFilter(), itk::ParallelSparseFieldLevelSetImageFilter< TInputImage, TOutputImage >::CalculateChange(), itk::CannySegmentationLevelSetFunction< TImageType, TFeatureImageType >::CannySegmentationLevelSetFunction(), itk::GPUFiniteDifferenceFunction< TDisplacementField >::ComputeUpdate(), itk::Concept::HasNumericTraits< T >::Constraints::constraints(), itk::Concept::HasZero< T >::Constraints::constraints(), itk::Functor::DivideOrZeroOut< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType >::DivideOrZeroOut(), itk::BSplineKernelFunction< VSplineOrder, TRealValueType >::Evaluate(), itk::BSplineDerivativeKernelFunction< VSplineOrder, TRealValueType >::Evaluate(), itk::ExtractOrthogonalSwath2DImageFilter< TImage >::ExtractOrthogonalSwath2DImageFilter(), itk::GaborKernelFunction< TRealValueType >::GaborKernelFunction(), itk::Accessor::AbsPixelAccessor< TImage::PixelType, TOutputPixelType >::Get(), itk::CellInterface< TPixelType, TCellTraits >::GetBoundingBoxDiagonalLength2(), itk::QuadEdgeMesh< TPixel, VDimension, TTraits >::GetCellBoundaryFeatureNeighbors(), itk::QuadEdgeMesh< TPixel, VDimension, TTraits >::GetCellNeighbors(), itk::CurvatureFlowFunction< TImage >::GetGlobalDataPointer(), itk::ShapePriorSegmentationLevelSetFunction< TImageType, TFeatureImageType >::GetGlobalDataPointer(), itk::LevelSetFunction< TImageType >::GetGlobalDataPointer(), itk::Functor::StandardDeviationAccumulator< TInputPixel, TAccumulate >::GetValue(), itk::Function::VectorMorphologicalGradientHistogram< TInputPixel >::GetValue(), itk::RegionBasedLevelSetFunction< TInput, TFeature, TSharedData >::GlobalDataStruct::GlobalDataStruct(), itk::Functor::GPUBinaryThreshold< TInputImage::PixelType, TOutputImage::PixelType >::GPUBinaryThreshold(), itk::Functor::SumAccumulator< TInputPixel, TOuputPixel >::Initialize(), itk::Functor::MeanAccumulator< TInputPixel, TAccumulate >::Initialize(), itk::Functor::StandardDeviationAccumulator< TInputPixel, TAccumulate >::Initialize(), itk::Functor::MaskInput< typename TInputImage::PixelType, typename TMaskImage::PixelType, typename TOutputImage::PixelType >::InitializeOutsideValue(), itk::NeighborhoodOperator< TPixel, TDimension, TAllocator >::InitializeToZero(), itk::LabelGeometryImageFilter< TLabelImage, TIntensityImage >::LabelGeometry::LabelGeometry(), itk::Functor::LabelOverlayFunctor< FeatureImagePixelType, LabelMapPixelType, OutputImagePixelType >::LabelOverlayFunctor(), itk::LabelStatisticsImageFilter< TInputImage, TLabelImage >::LabelStatistics::LabelStatistics(), itk::Functor::LabelToRGBFunctor< TLabelImage::PixelType, TOutputImage::PixelType >::LabelToRGBFunctor(), itk::LevelSetBase< TInput, VDimension, TOutput, TDomain >::LevelSetDataType::LevelSetDataType(), itk::Functor::LogicOpBase< TInput, TInput, TOutput >::LogicOpBase(), itk::LinearInterpolateImageFunction< TInputImage, TCoordRep >::MakeZeroInitializer(), itk::Functor::MaskInput< typename TInputImage::PixelType, typename TMaskImage::PixelType, typename TOutputImage::PixelType >::MaskInput(), itk::VectorGradientMagnitudeImageFilter< TInputImage, TRealType, TOutputImage >::NonPCEvaluateAtNeighborhood(), itk::Functor::InvertIntensityFunctor< InputPixelType >::operator()(), itk::Functor::Add1< TInputImage::PixelType, TInputImage::PixelType >::operator()(), itk::Functor::SimilarVectorsFunctor< TInputImage::ValueType >::operator()(), itk::Functor::InverseDeconvolutionFunctor< TInput1, TInput2, TOutput >::operator()(), itk::Functor::TikhonovDeconvolutionFunctor< TInput1, TInput2, TOutput >::operator()(), itk::Functor::WienerDeconvolutionFunctor< TPixel >::operator()(), itk::AuthalicMatrixCoefficients< TInputMesh >::operator()(), itk::LevelSetFunctionWithRefitTerm< TImageType, TSparseImageType >::OtherPropagationSpeed(), itk::LevelSetFunction< TImageType >::PropagationSpeed(), itk::QuadEdgeMeshDecimationCriterion< TMesh, TElement, TMeasure, TPriorityQueueWrapper >::QuadEdgeMeshDecimationCriterion(), itk::MeshIOBase::ReadCellsBuffer(), itk::FastMarchingNumberOfElementsStoppingCriterion< TInput, TOutput >::Reset(), itk::FastMarchingImageFilter< TLevelSet, TSpeedImage >::SetBinaryMask(), itk::NumericTraits< InputImagePixelType >::SetLength(), itk::Functor::SimilarPixelsFunctor< TInputImage::ValueType >::SimilarPixelsFunctor(), itk::Functor::SimilarVectorsFunctor< TInputImage::ValueType >::SimilarVectorsFunctor(), itk::Point< double, Self::ImageDimension >::SquaredEuclideanDistanceTo(), itk::Path< TIndexValue, Index< VDimension >, VDimension >::StartOfInput(), itk::ShapeRelabelLabelMapFilter< TImage >::TemplatedGenerateData(), itk::ImageBase< TImage::ImageDimension >::TransformContinuousIndexToPhysicalPoint(), itk::ImageBase< TImage::ImageDimension >::TransformLocalVectorToPhysicalVector(), itk::ImageBase< TImage::ImageDimension >::TransformPhysicalPointToIndex(), itk::ImageBase< TImage::ImageDimension >::TransformPhysicalVectorToLocalVector(), itk::DivideImageFilter< TInputImage1, TInputImage2, TOutputImage >::VerifyPreconditions(), itk::OBJMeshIO::WriteCells(), itk::BYUMeshIO::WriteCells(), itk::MeshIOBase::WriteCellsBuffer(), itk::OBJMeshIO::WritePointData(), itk::OBJMeshIO::WritePoints(), itk::BYUMeshIO::WritePoints(), itk::NumericTraits< std::vector< T > >::ZeroValue(), itk::NumericTraits< Vector< T, D > >::ZeroValue(), itk::NumericTraits< Point< T, D > >::ZeroValue(), itk::NumericTraits< RGBPixel< T > >::ZeroValue(), itk::NumericTraits< RGBAPixel< T > >::ZeroValue(), itk::NumericTraits< CovariantVector< T, D > >::ZeroValue(), itk::NumericTraits< SymmetricSecondRankTensor< T, D > >::ZeroValue(), itk::NumericTraits< FixedArray< T, D > >::ZeroValue(), itk::NumericTraits< InputImagePixelType >::ZeroValue(), and itk::Functor::MeanAccumulator< TInputPixel, TAccumulate >::~MeanAccumulator().
|
inlinestatic |
Zero value. This API is needed for VariableLengthVector because its length is only known at run-time.
Definition at line 226 of file itkNumericTraits.h.
|
staticconstexpr |
Is a given type complex? – default is no. For uniform array data types in ITK, the value of IsComplex is determined by the component elements of the array.
Definition at line 143 of file itkNumericTraits.h.
|
staticconstexpr |
Is a given type an integer? – default is no. For uniform array data types in ITK, the value of IsInteger is determined by the component elements of the array.
Definition at line 138 of file itkNumericTraits.h.
|
staticconstexpr |
Is a given type signed? – default is no. For uniform array data types in ITK, the value of IsSigned is determined by the component elements of the array.
Definition at line 133 of file itkNumericTraits.h.
|
static |
Multiplicative identity.
Definition at line 93 of file itkNumericTraits.h.
Referenced by itk::NumericTraits< InputImagePixelType >::OneValue().
|
static |
Additive identity.
Definition at line 90 of file itkNumericTraits.h.
Referenced by itk::NumericTraits< InputImagePixelType >::IsNegative(), itk::NumericTraits< InputImagePixelType >::IsNonnegative(), itk::NumericTraits< InputImagePixelType >::IsNonpositive(), itk::NumericTraits< InputImagePixelType >::IsPositive(), and itk::NumericTraits< InputImagePixelType >::ZeroValue().