Skip to content

Commit

Permalink
BUG: Spectra1DAveragingImageFilter iterator fix
Browse files Browse the repository at this point in the history
Resolves an issue where `Spectra1DAveragingImageFilter` was observed to
hang in Python testing due to not advancing to the next line.
  • Loading branch information
tbirdso authored and dzenanz committed Mar 17, 2022
1 parent 814944b commit e836049
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/itkSpectra1DAveragingImageFilter.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ Spectra1DAveragingImageFilter<TInputImage, TOutputImage>::GenerateData()
}

progress.CompletedPixel();
iIt.NextLine();
}
}
}
Expand Down

0 comments on commit e836049

Please sign in to comment.