SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
CoreThresholdPartitionStep.h
Go to the documentation of this file.
1
22
23#ifndef _SEIMPLEMENTATION_PLUGIN_CORETHRESHOLDPARTITIONSTEP_H
24#define _SEIMPLEMENTATION_PLUGIN_CORETHRESHOLDPARTITIONSTEP_H
25
27
28namespace SourceXtractor {
29
36
37public:
38
40 virtual ~CoreThresholdPartitionStep() = default;
41
43 CoreThresholdPartitionStep(double snr_level, unsigned int min_pixel_count);
44
46
47
48private:
50 unsigned int m_min_pixel_count;
51
52
53}; /* End of CoreSNRPartitionStep class */
54
55} /* namespace SExtractor */
56
57
58#endif
std::vector< std::unique_ptr< SourceInterface > > partition(std::unique_ptr< SourceInterface > source) const override
CoreThresholdPartitionStep(double snr_level, unsigned int min_pixel_count)
Constructor.
virtual ~CoreThresholdPartitionStep()=default
Destructor.
A PartitionStep gets applied on a single Source and can result any number of Sources being outputed....
Definition Partition.h:38