Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Modules/Core/Transform/include/itkKernelTransform.h
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ class ITK_TEMPLATE_EXPORT KernelTransform : public Transform<TParametersValueTyp
bool m_WMatrixComputed{};

/** Identity matrix. */
IMatrixType m_I;
IMatrixType m_I{};

/** The list of source landmarks, denoted 'p'. */
PointSetPointer m_SourceLandmarks{};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class ITK_TEMPLATE_EXPORT CurvatureNDAnisotropicDiffusionFunction : public Scala
DerivativeOperator<PixelType, Self::ImageDimension> m_DerivativeOperator{};

/** Modified global average gradient magnitude term. */
PixelType m_K;
PixelType m_K{};

/** */
static double m_MIN_NORM;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class ITK_TEMPLATE_EXPORT GradientNDAnisotropicDiffusionFunction : public Scalar
DerivativeOperator<PixelType, Self::ImageDimension> m_DerivativeOperator{};

/** Modified global average gradient magnitude term. */
PixelType m_K;
PixelType m_K{};

NeighborhoodSizeValueType m_Center{};
NeighborhoodSizeValueType m_Stride[ImageDimension]{};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class ITK_TEMPLATE_EXPORT VectorGradientNDAnisotropicDiffusionFunction
DerivativeOperator<ScalarValueType, Self::ImageDimension> m_DerivativeOperator{};

/** Modified global average gradient magnitude term. */
ScalarValueType m_K;
ScalarValueType m_K{};

static double m_MIN_NORM;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ITK_TEMPLATE_EXPORT GPUGradientNDAnisotropicDiffusionFunction
DerivativeOperator<PixelType, Self::ImageDimension> m_DerivativeOperator{};

/** Modified global average gradient magnitude term. */
PixelType m_K;
PixelType m_K{};

NeighborhoodSizeValueType m_Center{};
NeighborhoodSizeValueType m_Stride[ImageDimension]{};
Expand Down
2 changes: 1 addition & 1 deletion Modules/Numerics/Optimizers/include/itkSPSAOptimizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class ITKOptimizers_EXPORT SPSAOptimizer : public SingleValuedNonLinearOptimizer
/** Parameters, as described by Spall.*/
double m_Sa{};
double m_Sc{};
double m_A;
double m_A{};
double m_Alpha{};
double m_Gamma{};
}; // end class SPSAOptimizer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class ParticleSwarmTestF2 : public SingleValuedCostFunction
}

private:
MatrixType m_A;
MatrixType m_A{};
VectorType m_Intercept{};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ class ITK_TEMPLATE_EXPORT FEMRegistrationFilter : public ImageToImageFilter<TMov
vnl_vector<unsigned int> m_MeshPixelsPerElementAtEachResolution{};

Float m_TimeStep{ 1 };
vnl_vector<Float> m_E;
vnl_vector<Float> m_E{};
vnl_vector<Float> m_Rho{};
vnl_vector<Float> m_Gamma{};
Float m_Energy{ 0.0 }; // current value of energy
Expand Down