#ifndef __bbSlicerRobustStatisticsSegmentation_h_INCLUDED__ #define __bbSlicerRobustStatisticsSegmentation_h_INCLUDED__ #include "bbSlicer_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include #include #include #include #include #include #include #include #include #include #include #include "CreationTool.h" namespace bbSlicer { class bbSlicer_EXPORT RobustStatisticsSegmentation : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE ( RobustStatisticsSegmentation , bbtk::AtomicBlackBox ) ; // GENERATED ARGS BBTK_DECLARE_INPUT ( expectedVolume , double ); BBTK_DECLARE_INPUT ( intensityHomogeneity , double ); BBTK_DECLARE_INPUT ( curvatureWeight , double ); BBTK_DECLARE_INPUT ( labelValue , int ); BBTK_DECLARE_INPUT ( maxRunningTime , double ); BBTK_DECLARE_INPUT ( originalImageFileName , std::string ); BBTK_DECLARE_INPUT ( labelImageFileName , std::string ); BBTK_DECLARE_INPUT ( segmentedImageFileName , std::string ); // EO GENERATED ARGS BBTK_PROCESS ( Process ) ; void Process ( ) ; private: void execute ( std::string lib , int _argc , char * _argv[] ) ; } ; BBTK_BEGIN_DESCRIBE_BLACK_BOX ( RobustStatisticsSegmentation , bbtk::AtomicBlackBox ) ; BBTK_NAME ( "RobustStatisticsSegmentation" ) ; BBTK_AUTHOR ( "Yi Gao, Allen Tannenbaum, Ron Kikinis" ) ; BBTK_DESCRIPTION ( "Active contour segmentation using robust statistic." ) ; BBTK_CATEGORY ( "Segmentation.Specialized" ) ; // GENERATED DESCRPTION BBTK_INPUT(RobustStatisticsSegmentation , expectedVolume , "expectedVolume" , double, ""); BBTK_INPUT(RobustStatisticsSegmentation , intensityHomogeneity , "intensityHomogeneity" , double, ""); BBTK_INPUT(RobustStatisticsSegmentation , curvatureWeight , "curvatureWeight" , double, ""); BBTK_INPUT(RobustStatisticsSegmentation , labelValue , "labelValue" , int, ""); BBTK_INPUT(RobustStatisticsSegmentation , maxRunningTime , "maxRunningTime" , double, ""); BBTK_INPUT(RobustStatisticsSegmentation , originalImageFileName , "originalImageFileName" , std::string, ""); BBTK_INPUT(RobustStatisticsSegmentation , labelImageFileName , "labelImageFileName" , std::string, ""); BBTK_INPUT(RobustStatisticsSegmentation , segmentedImageFileName , "segmentedImageFileName" , std::string, ""); // EO GENERATED DESCRIPTION BBTK_END_DESCRIBE_BLACK_BOX ( RobustStatisticsSegmentation ) ; } #endif // __bbSlicerRobustStatisticsSegmentation_h_INCLUDED__