|
SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
|
Used to subtract a constant value from an Image. More...
#include <ThresholdedImage.h>


Public Member Functions | |
| virtual | ~ThresholdedImage ()=default |
| Destructor. | |
| std::string | getRepr () const override |
| Get a string identifying this image in a human readable manner. | |
| int | getWidth () const override |
| Returns the width of the image in pixels. | |
| int | getHeight () const override |
| Returns the height of the image in pixels. | |
| std::shared_ptr< ImageChunk< T > > | getChunk (int x, int y, int width, int height) const override |
| Public Member Functions inherited from SourceXtractor::Image< T > | |
| virtual | ~Image ()=default |
| Destructor. | |
| std::shared_ptr< ImageChunk< T > > | getChunk (const PixelCoordinate &start, const PixelCoordinate &end) const |
| bool | isInside (int x, int y) const |
| Returns true if the given coordinates are inside the image bounds. | |
Static Public Member Functions | |
| static std::shared_ptr< ThresholdedImage< T > > | create (std::shared_ptr< const Image< T > > image, std::shared_ptr< const Image< T > > variance_map, T threshold_multiplier) |
Protected Member Functions | |
| ThresholdedImage (std::shared_ptr< const Image< T > > image, std::shared_ptr< const Image< T > > variance_map, T threshold_multiplier) | |
Private Attributes | |
| std::shared_ptr< const Image< T > > | m_image |
| std::shared_ptr< const Image< T > > | m_variance_map |
| T | m_threshold_multiplier |
Additional Inherited Members | |
| Public Types inherited from SourceXtractor::Image< T > | |
| using | PixelType = T |
Used to subtract a constant value from an Image.
Definition at line 41 of file ThresholdedImage.h.
|
inlineprotected |
Definition at line 45 of file ThresholdedImage.h.
References m_image, m_threshold_multiplier, and m_variance_map.
Referenced by create().
|
virtualdefault |
Destructor.
|
inlinestatic |
Definition at line 58 of file ThresholdedImage.h.
References ThresholdedImage().
Referenced by SourceXtractor::Frame< T >::getThresholdedImage().

|
inlineoverridevirtual |
Implements SourceXtractor::Image< T >.
Definition at line 75 of file ThresholdedImage.h.
References SourceXtractor::UniversalImageChunk< T >::create(), m_image, m_threshold_multiplier, m_variance_map, std::move(), and std::sqrt().

|
inlineoverridevirtual |
Returns the height of the image in pixels.
Implements SourceXtractor::Image< T >.
Definition at line 71 of file ThresholdedImage.h.
References m_image.
|
inlineoverridevirtual |
Get a string identifying this image in a human readable manner.
Implements SourceXtractor::Image< T >.
Definition at line 63 of file ThresholdedImage.h.
References m_image.
|
inlineoverridevirtual |
Returns the width of the image in pixels.
Implements SourceXtractor::Image< T >.
Definition at line 67 of file ThresholdedImage.h.
References m_image.
|
private |
Definition at line 88 of file ThresholdedImage.h.
Referenced by getChunk(), getHeight(), getRepr(), getWidth(), and ThresholdedImage().
|
private |
Definition at line 89 of file ThresholdedImage.h.
Referenced by getChunk(), and ThresholdedImage().
|
private |
Definition at line 88 of file ThresholdedImage.h.
Referenced by getChunk(), and ThresholdedImage().