SourceXtractorPlusPlus  0.12
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
WriteableImage.h
Go to the documentation of this file.
1 
17 /*
18  * WriteableImage.h
19  *
20  * Created on: Mar 8, 2018
21  * Author: mschefer
22  */
23 
24 #ifndef _SEFRAMEWORK_IMAGE_WRITEABLEIMAGE_H_
25 #define _SEFRAMEWORK_IMAGE_WRITEABLEIMAGE_H_
26 
28 
29 namespace SourceXtractor {
30 
31 template <typename T>
32 class WriteableImage : public virtual Image<T> {
33 public:
34 
35  virtual void setValue(int x, int y, T value) = 0;
36  //virtual void setValues(int x, int y, int width, int height, T* values) = 0;
37 };
38 
39 }
40 
41 #endif /* _SEFRAMEWORK_IMAGE_WRITEABLEIMAGE_H_ */
std::shared_ptr< DependentParameter< std::shared_ptr< EngineParameter > > > x
virtual void setValue(int x, int y, T value)=0
std::shared_ptr< DependentParameter< std::shared_ptr< EngineParameter > > > y
Interface representing an image.
Definition: Image.h:43