1 class BinaryThresholdImageFilterGeneric
2 !!!185474.cpp!!! ProcessSwitch() : void
3 BBTK_TEMPLATE_ITK_IMAGE_SWITCH(bbGetInputIn().type(), this->Process);
5 !!!185602.cpp!!! Process() : void
6 bbtkDebugMessageInc("Core",9,
7 "bbitk::BinaryThresholdImageFilterGeneric::Process<"
8 <<bbtk::TypeName<T>()<<">()"<<std::endl);
10 typedef BinaryThresholdImageFilter<T> FilterType;
11 typename FilterType::Pointer f = FilterType::New("Temp");
13 f->bbSetInputIn( this->bbGetInputIn().get < TPointer > () );
14 f->bbSetInputLowerThreshold ( (typename T::PixelType)
15 this->bbGetInputLowerThreshold() );
16 f->bbSetInputUpperThreshold ( (typename T::PixelType)
17 this->bbGetInputUpperThreshold() );
18 f->bbSetInputInsideValue ( (typename T::PixelType)
19 this->bbGetInputInsideValue() );
20 f->bbSetInputOutsideValue ( (typename T::PixelType)
21 this->bbGetInputOutsideValue() );
23 f->bbGetOutputOut()->Register();
24 this->bbSetOutputOut( f->bbGetOutputOut() );
26 bbtkDebugDecTab("Core",9);