SourceXtractorPlusPlus
0.13
Please provide a description of the project.
|
#include <LockedImage.h>
Public Member Functions | |
std::string | getRepr () const override |
Get a string identifying this image in a human readable manner. More... | |
int | getWidth () const override |
Returns the width of the image in pixels. More... | |
int | getHeight () const override |
Returns the height of the image in pixels. More... | |
T | getValue (int x, int y) const override |
Returns the value of the pixel with the coordinates (x,y) More... | |
![]() | |
virtual | ~ImageBase () |
virtual std::shared_ptr < ImageChunk< T > > | getChunk (int x, int y, int width, int height) const override |
![]() | |
virtual | ~Image ()=default |
Destructor. More... | |
T | getValue (PixelCoordinate pc) const |
bool | isInside (int x, int y) const |
Returns true if the given coordinates are inside the image bounds. More... | |
![]() | |
T | enable_shared_from_this (T...args) |
T | operator= (T...args) |
T | shared_from_this (T...args) |
T | ~enable_shared_from_this (T...args) |
Static Public Member Functions | |
template<typename... Args> | |
static std::shared_ptr < LockedImage< T > > | create (Args &&...args) |
Protected Member Functions | |
LockedImage (std::shared_ptr< const Image< T >> img) | |
Private Attributes | |
std::shared_ptr< const Image< T > > | m_img |
std::lock_guard < std::recursive_mutex > | m_lock |
Additional Inherited Members | |
![]() | |
using | PixelType = T |
Definition at line 28 of file LockedImage.h.
|
inlineprotected |
Definition at line 30 of file LockedImage.h.
|
inlinestatic |
Definition at line 35 of file LockedImage.h.
Referenced by SourceXtractor::MeasurementFrameImages::getLockedImage(), and SourceXtractor::DetectionFrameImages::getLockedImage().
|
inlineoverridevirtual |
Returns the height of the image in pixels.
Implements SourceXtractor::Image< T >.
Definition at line 47 of file LockedImage.h.
References SourceXtractor::LockedImage< T >::m_img.
|
inlineoverridevirtual |
Get a string identifying this image in a human readable manner.
Implements SourceXtractor::Image< T >.
Definition at line 39 of file LockedImage.h.
References SourceXtractor::LockedImage< T >::m_img.
|
inlineoverridevirtual |
Returns the value of the pixel with the coordinates (x,y)
Implements SourceXtractor::Image< T >.
Definition at line 51 of file LockedImage.h.
References SourceXtractor::LockedImage< T >::m_img.
|
inlineoverridevirtual |
Returns the width of the image in pixels.
Implements SourceXtractor::Image< T >.
Definition at line 43 of file LockedImage.h.
References SourceXtractor::LockedImage< T >::m_img.
|
private |
Definition at line 56 of file LockedImage.h.
Referenced by SourceXtractor::LockedImage< T >::getHeight(), SourceXtractor::LockedImage< T >::getRepr(), SourceXtractor::LockedImage< T >::getValue(), and SourceXtractor::LockedImage< T >::getWidth().
|
private |
Definition at line 57 of file LockedImage.h.