SourceXtractorPlusPlus
0.11
Please provide a description of the project.
|
Processes two images to create a third combining them by using any function. More...
#include <ProcessedImage.h>
Public Member Functions | |
virtual | ~ProcessedImage ()=default |
Destructor. More... | |
std::string | getRepr () const override |
Get a string identifying this image in a human readable manner. More... | |
T | getValue (int x, int y) const override |
Returns the value of the pixel with the coordinates (x,y) 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... | |
std::shared_ptr< ImageChunk< T > > | getChunk (int x, int y, int width, int height) const override |
![]() | |
virtual | ~ImageBase () |
![]() | |
virtual | ~Image ()=default |
Destructor. More... | |
T | getValue (PixelCoordinate pc) const |
![]() | |
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 | |
static std::shared_ptr < ProcessedImage< T, P > > | create (std::shared_ptr< const Image< T >> image_a, std::shared_ptr< const Image< T >> image_b) |
static std::shared_ptr < ProcessedImage< T, P > > | create (std::shared_ptr< const Image< T >> image_a, T value) |
Protected Member Functions | |
ProcessedImage (std::shared_ptr< const Image< T >> image_a, std::shared_ptr< const Image< T >> image_b) | |
Private Attributes | |
std::shared_ptr< const Image< T > > | m_image_a |
std::shared_ptr< const Image< T > > | m_image_b |
Additional Inherited Members | |
![]() | |
using | PixelType = T |
Processes two images to create a third combining them by using any function.
Definition at line 37 of file ProcessedImage.h.
|
inlineprotected |
Definition at line 41 of file ProcessedImage.h.
References SourceXtractor::ProcessedImage< T, P >::m_image_a, and SourceXtractor::ProcessedImage< T, P >::m_image_b.
|
virtualdefault |
Destructor.
|
inlinestatic |
Definition at line 54 of file ProcessedImage.h.
Referenced by SourceXtractor::SEBackgroundLevelAnalyzer::analyzeBackground(), SourceXtractor::SimpleBackgroundAnalyzer::analyzeBackground(), SourceXtractor::MeasurementFrameTaskFactory::configure(), SourceXtractor::BgDFTConvolutionImageSource::generateTile(), SourceXtractor::Frame< T >::getSnrImage(), SourceXtractor::Frame< T >::getSubtractedImage(), SourceXtractor::WeightImageConfig::initialize(), SourceXtractor::DetectionImageConfig::initialize(), SourceXtractor::MeasurementImageConfig::initialize(), SEMain::mainMethod(), SourceXtractor::MultiThresholdPartitionStep::partition(), and SourceXtractor::CheckImages::saveImages().
|
inlinestatic |
Definition at line 59 of file ProcessedImage.h.
References SourceXtractor::ConstantImage< T >::create().
|
inlineoverridevirtual |
Reimplemented from SourceXtractor::ImageBase< T >.
Definition at line 81 of file ProcessedImage.h.
References SourceXtractor::VectorImage< T >::create(), SourceXtractor::UniversalImageChunk< T >::create(), ModelFitting::height, SourceXtractor::ProcessedImage< T, P >::m_image_a, SourceXtractor::ProcessedImage< T, P >::m_image_b, std::move(), and ModelFitting::width.
|
inlineoverridevirtual |
Returns the height of the image in pixels.
Implements SourceXtractor::Image< T >.
Definition at line 77 of file ProcessedImage.h.
References SourceXtractor::ProcessedImage< T, P >::m_image_a.
|
inlineoverridevirtual |
Get a string identifying this image in a human readable manner.
Implements SourceXtractor::Image< T >.
Definition at line 64 of file ProcessedImage.h.
References SourceXtractor::ProcessedImage< T, P >::m_image_a, and SourceXtractor::ProcessedImage< T, P >::m_image_b.
|
inlineoverridevirtual |
Returns the value of the pixel with the coordinates (x,y)
Implements SourceXtractor::Image< T >.
Definition at line 69 of file ProcessedImage.h.
References SourceXtractor::ProcessedImage< T, P >::m_image_a, and SourceXtractor::ProcessedImage< T, P >::m_image_b.
|
inlineoverridevirtual |
Returns the width of the image in pixels.
Implements SourceXtractor::Image< T >.
Definition at line 73 of file ProcessedImage.h.
References SourceXtractor::ProcessedImage< T, P >::m_image_a.
|
private |
Definition at line 94 of file ProcessedImage.h.
Referenced by SourceXtractor::ProcessedImage< T, P >::getChunk(), SourceXtractor::ProcessedImage< T, P >::getHeight(), SourceXtractor::ProcessedImage< T, P >::getRepr(), SourceXtractor::ProcessedImage< T, P >::getValue(), SourceXtractor::ProcessedImage< T, P >::getWidth(), and SourceXtractor::ProcessedImage< T, P >::ProcessedImage().
|
private |