FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
VectorMedianFilter.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <FAST/ProcessObject.hpp>
4 
5 namespace fast {
6 
7 class FAST_EXPORT VectorMedianFilter : public ProcessObject {
9  public:
14  void setWindowSize(int size);
15  void loadAttributes() override;
16  private:
18  void execute() override;
19 
20  int m_windowSize = 7;
21 };
22 
23 }
fast
Definition: AffineTransformation.hpp:7
fast::VectorMedianFilter
Definition: VectorMedianFilter.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22