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