Skip to content

Commit 354c439

Browse files
committed
BUG: Spelling Histograme -> Histogram
1 parent a9a48e1 commit 354c439

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/itkRunLengthTextureFeaturesImageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class ITK_TEMPLATE_EXPORT RunLengthTextureFeaturesImageFilter:public ImageToImag
229229

230230
void NormalizeOffsetDirection(OffsetType &offset);
231231
bool IsInsideNeighborhood(const OffsetType &iteratedOffset);
232-
void IncreaseHistograme(unsigned int **hist, unsigned int &totalNumberOfRuns,
232+
void IncreaseHistogram(unsigned int **hist, unsigned int &totalNumberOfRuns,
233233
const PixelType &curentInNeighborhoodPixelIntensity,
234234
const OffsetType &offset, const unsigned int &pixelDistance);
235235
void ComputeFeatures( unsigned int **hist, const unsigned int &totalNumberOfRuns,

include/itkRunLengthTextureFeaturesImageFilter.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
264264
}
265265
}
266266
// Increase the coresponding bin in the histogram
267-
this->IncreaseHistograme(hist, totalNumberOfRuns,
267+
this->IncreaseHistogram(hist, totalNumberOfRuns,
268268
curentInNeighborhoodPixelIntensity,
269269
offset, pixelDistance);
270270
}
@@ -387,7 +387,7 @@ RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
387387
template<typename TInputImage, typename TOutputImage>
388388
void
389389
RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
390-
::IncreaseHistograme(unsigned int **hist, unsigned int &totalNumberOfRuns,
390+
::IncreaseHistogram(unsigned int **hist, unsigned int &totalNumberOfRuns,
391391
const PixelType &curentInNeighborhoodPixelIntensity,
392392
const OffsetType &offset, const unsigned int &pixelDistance)
393393
{

0 commit comments

Comments
 (0)