FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
InverseGradientSegmentation.hpp
Go to the documentation of this file.
1 #ifndef INVERSE_GRADIENT_SEGMENTATION_HPP
2 #define INVERSE_GRADIENT_SEGMENTATION_HPP
3 
4 #include "FAST/ProcessObject.hpp"
5 
6 namespace fast {
7 
8 class FAST_EXPORT InverseGradientSegmentation : public ProcessObject {
10  public:
11  void setCenterlineInputConnection(DataChannel::pointer port);
12  void setVectorFieldInputConnection(DataChannel::pointer port);
13  private:
15  void execute();
16 
17 };
18 
19 }
20 
21 #endif
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
fast::InverseGradientSegmentation
Definition: InverseGradientSegmentation.hpp:8
fast::DataChannel::pointer
std::shared_ptr< DataChannel > pointer
Definition: DataChannel.hpp:12
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22