#include #include #include #include #include // ------------------------------------------------------------------------- cpPluginsImageThresholdFilters::BinaryThresholdImageFilter:: BinaryThresholdImageFilter( ) : Superclass( ) { this->_ConfigureInput< cpPlugins::DataObjects::Image >( "Input", true, false ); this->_ConfigureOutput< cpPlugins::DataObjects::Image >( "Output" ); this->m_Parameters.ConfigureAsReal( "LowerThresholdValue" ); this->m_Parameters.ConfigureAsReal( "UpperThresholdValue" ); this->m_Parameters.ConfigureAsUint( "InsideValue" ); this->m_Parameters.ConfigureAsUint( "OutsideValue" ); this->m_Parameters.SetReal( "LowerThresholdValue", 0 ); this->m_Parameters.SetReal( "UpperThresholdValue", 10000 ); this->m_Parameters.SetUint( "InsideValue", 1 ); this->m_Parameters.SetUint( "OutsideValue", 0 ); } // ------------------------------------------------------------------------- cpPluginsImageThresholdFilters::BinaryThresholdImageFilter:: ~BinaryThresholdImageFilter( ) { } // ------------------------------------------------------------------------- void cpPluginsImageThresholdFilters::BinaryThresholdImageFilter:: _GenerateData( ) { auto o = this->GetInputData( "Input" ); cpPlugins_Demangle_ImageScalars_Dims( o, _GD0 ); else this->_Error( "Invalid input image." ); } // ------------------------------------------------------------------------- template< class _TImage > void cpPluginsImageThresholdFilters::BinaryThresholdImageFilter:: _GD0( _TImage* image ) { typedef unsigned char _TBin; typedef itk::Image< unsigned char, _TImage::ImageDimension > _TBinImage; typedef itk::BinaryThresholdImageFilter< _TImage, _TBinImage > _TFilter; typedef typename _TImage::PixelType _TPixel; // Get parameters _TPixel lt = _TPixel( this->m_Parameters.GetReal( "LowerThresholdValue" ) ); _TPixel ut = _TPixel( this->m_Parameters.GetReal( "UpperThresholdValue" ) ); _TBin iv = _TBin( this->m_Parameters.GetUint( "InsideValue" ) ); _TBin ov = _TBin( this->m_Parameters.GetUint( "OutsideValue" ) ); // Configure filter _TFilter* filter = this->_CreateITK< _TFilter >( ); filter->SetInput( image ); filter->SetLowerThreshold( lt ); filter->SetUpperThreshold( ut ); filter->SetInsideValue( iv ); filter->SetOutsideValue( ov ); filter->Update( ); // Connect output this->GetOutput( "Output" )->SetITK( filter->GetOutput( ) ); } // eof - $RCSfile$