Skip to content
Snippets Groups Projects
Commit 7f2ce5be authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

WRG: Inititalisation of norm and sum variables.

parent a2fd73a0
No related branches found
No related tags found
No related merge requests found
......@@ -116,8 +116,8 @@ ConvolutionImageFilter< TInputImage, TOutputImage, TBoundaryCondition>
// support progress methods/callbacks
itk::ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
InputRealType sum;
InputRealType norm;
InputRealType sum = itk::NumericTraits<InputRealType>::Zero;
InputRealType norm = itk::NumericTraits<InputRealType>::Zero;
// Process each of the boundary faces. These are N-d regions which border
// the edge of the buffer.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment