Skip to content
Snippets Groups Projects
Commit 89119d64 authored by Patrick Imbo's avatar Patrick Imbo
Browse files

No commit message

No commit message
parent 6607fc1a
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,8 @@ HarrisImageToPointSetFilter<TInputImage, TOutputPointSet>
::GenerateData()
{
typename OutputPointSetType::Pointer pointList = this->GetOutput();
m_HarrisFilter->SetInput( 0, this->GetInput(0) );
m_HarrisFilter->SetSigmaD( m_SigmaD );
m_HarrisFilter->SetSigmaI( m_SigmaI );
......@@ -53,10 +55,10 @@ HarrisImageToPointSetFilter<TInputImage, TOutputPointSet>
m_ThresholdFilter->SetInput(0,m_HarrisFilter->GetOutput() );
m_ThresholdFilter->SetThreshold(m_Threshold );
m_ThresholdFilter->GraftOutput(this->GetOutput() );
m_ThresholdFilter->SetOutput(pointList );
m_ThresholdFilter->Update();
this->GraftOutput(m_ThresholdFilter->GetOutput() );
}
......
......@@ -550,9 +550,6 @@ ImageToPathListAlignFilter<TInputImage,TOutputPath>
OutputPath->push_back(path);
}
#if 0
#endif
printf("finish\n");
itkDebugMacro(<< "ImageToPathListAlignFilter::GenerateData() finished");
} // end update function
......
......@@ -15,6 +15,7 @@
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __otbThresholdImageToPointSetFilter_txx
#define __otbThresholdImageToPointSetFilter_txx
......@@ -24,9 +25,6 @@
namespace otb
{
/**
*
*/
template <class TInputImage, class TOutputPointSet>
ThresholdImageToPointSetFilter<TInputImage, TOutputPointSet>
::ThresholdImageToPointSetFilter()
......@@ -34,9 +32,6 @@ ThresholdImageToPointSetFilter<TInputImage, TOutputPointSet>
m_Threshold = itk::NumericTraits<InputPixelType>::max();
}
/**
*
*/
template <class TInputImage, class TOutputPointSet>
void
......@@ -78,8 +73,6 @@ ThresholdImageToPointSetFilter<TInputImage, TOutputPointSet>
}
++inIt;
}
#if 0
#endif
}
/**
......
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