FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
UltrasoundImageEnhancement.hpp
Go to the documentation of this file.
1 #ifndef FAST_ULTRASOUND_IMAGE_ENHANCEMENT_HPP_
2 #define FAST_ULTRASOUND_IMAGE_ENHANCEMENT_HPP_
3 
4 #include <FAST/ProcessObject.hpp>
5 
6 namespace fast {
7 
8 class FAST_EXPORT UltrasoundImageEnhancement : public ProcessObject {
10  public:
11  void loadAttributes();
12  void setReject(int value);
13  private:
15  void execute();
16 
17  std::vector<uchar> mColormap;
18  cl::Buffer mColormapBuffer;
19  bool mColormapUploaded;
20 
21 };
22 
23 }
24 
25 #endif
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
ProcessObject.hpp
fast::UltrasoundImageEnhancement
Definition: UltrasoundImageEnhancement.hpp:8
fast::ProcessObject
Definition: ProcessObject.hpp:22