Skip to content
Snippets Groups Projects
Commit 05186120 authored by Julien Michel's avatar Julien Michel
Browse files

COMP: Renaming method following code migration from InsightJournal to ITK∕Code/Review

parent 553ca80c
No related branches found
No related tags found
No related merge requests found
...@@ -43,9 +43,9 @@ StatisticsAttributesLabelMapFilter<TImage, TFeatureImage> ...@@ -43,9 +43,9 @@ StatisticsAttributesLabelMapFilter<TImage, TFeatureImage>
template <class TImage, class TFeatureImage> template <class TImage, class TFeatureImage>
void void
StatisticsAttributesLabelMapFilter<TImage, TFeatureImage> StatisticsAttributesLabelMapFilter<TImage, TFeatureImage>
::ThreadedGenerateData( LabelObjectType * labelObject ) ::ThreadedProcessLabelObject( LabelObjectType * labelObject )
{ {
Superclass::ThreadedGenerateData( labelObject ); Superclass::ThreadedProcessLabelObject( labelObject );
ImageType * output = this->GetOutput(); ImageType * output = this->GetOutput();
const FeatureImageType * featureImage = this->GetFeatureImage(); const FeatureImageType * featureImage = this->GetFeatureImage();
......
...@@ -108,7 +108,7 @@ InPlaceLabelMapFilter<TInputImage> ...@@ -108,7 +108,7 @@ InPlaceLabelMapFilter<TInputImage>
assert( labeObject->GetLabel() == it->first ); assert( labeObject->GetLabel() == it->first );
typename LabelObjectType::Pointer newLabelObject = LabelObjectType::New(); typename LabelObjectType::Pointer newLabelObject = LabelObjectType::New();
newLabelObject->CopyDataFrom( labeObject ); newLabelObject->CopyAllFrom( labeObject );
output->AddLabelObject( newLabelObject ); output->AddLabelObject( newLabelObject );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment