SourceXtractorPlusPlus
0.11
Please provide a description of the project.
|
#include <ImageSourceWithMetadata.h>
Public Member Functions | |
virtual | ~ImageSourceWithMetadata ()=default |
virtual const std::map < std::string, MetadataEntry > & | getMetadata () const =0 |
![]() | |
ImageSource () | |
virtual | ~ImageSource ()=default |
virtual std::shared_ptr < ImageTile< T > > | getImageTile (int x, int y, int width, int height) const =0 |
virtual void | saveTile (ImageTile< T > &tile)=0 |
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 | ~ImageSourceBase ()=default |
virtual std::string | getRepr () const =0 |
Human readable representation of this source. More... | |
ImageSource with additional metadata: i.e. coming from FITS headers Metadata is modeled as a set of key/value pairs. Keys are unique.
Definition at line 40 of file ImageSourceWithMetadata.h.
|
virtualdefault |
Accepted values are bool, char, int64_t, double and string Other types must be promoted (i.e. int32_t => int64_t, float => double)
|
pure virtual |
Implemented in SourceXtractor::FitsImageSource< T >.