Skip to content
Snippets Groups Projects
Commit fdd4df14 authored by Julien Malik's avatar Julien Malik
Browse files

BUG: bypass InPlaceLabelMapFilter::ReleaseInputs implementation causing memory issues

parent cf194872
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,9 @@ protected:
virtual void ThreadedProcessLabelObject( LabelObjectType * labelObject );
virtual void ReleaseInputs();
private:
LabelMapSVMClassifier(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
......
......@@ -33,6 +33,14 @@ LabelMapSVMClassifier<TInputImage>
this->SetNumberOfThreads(1);
}
template<class TInputImage>
void
LabelMapSVMClassifier<TInputImage>
::ReleaseInputs( )
{
this->itk::LabelMapFilter<TInputImage, TInputImage>::ReleaseInputs();
}
template<class TInputImage>
void
LabelMapSVMClassifier<TInputImage>
......
......@@ -39,11 +39,8 @@ LabelMapWithClassLabelToClassLabelImageFilter<TInputImage, TOutputImage>
{
OutputImageType * output = this->GetOutput();
const InputImageType * input = this->GetInput();
output->FillBuffer( input->GetBackgroundValue() );
Superclass::BeforeThreadedGenerateData();
}
......@@ -53,7 +50,6 @@ LabelMapWithClassLabelToClassLabelImageFilter<TInputImage, TOutputImage>
::ThreadedProcessLabelObject( LabelObjectType * labelObject )
{
typename LabelObjectType::ClassLabelType label = itk::NumericTraits<typename LabelObjectType::ClassLabelType>::max();
if(labelObject->HasClassLabel())
{
label = labelObject->GetClassLabel();
......
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