SourceXtractorPlusPlus
0.11
Please provide a description of the project.
|
#include <WriteableImage.h>
Public Member Functions | |
virtual void | setValue (int x, int y, T value)=0 |
![]() | |
virtual | ~Image ()=default |
Destructor. More... | |
virtual std::string | getRepr () const =0 |
Get a string identifying this image in a human readable manner. More... | |
virtual T | getValue (int x, int y) const =0 |
Returns the value of the pixel with the coordinates (x,y) More... | |
T | getValue (PixelCoordinate pc) const |
virtual int | getWidth () const =0 |
Returns the width of the image in pixels. More... | |
virtual int | getHeight () const =0 |
Returns the height of the image in pixels. More... | |
virtual std::shared_ptr< ImageChunk< T > > | getChunk (int x, int y, int width, int height) const =0 |
Additional Inherited Members | |
![]() | |
using | PixelType = T |
Definition at line 32 of file WriteableImage.h.
|
pure virtual |