SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
LutzSegmentation.h
Go to the documentation of this file.
1
23#ifndef _SEIMPLEMENTATION_SEGMENTATION_LUTZ_SEGMENTATION_H
24#define _SEIMPLEMENTATION_SEGMENTATION_LUTZ_SEGMENTATION_H
25
26#include <cassert>
27#include <memory>
31
32namespace SourceXtractor {
33
39
40public:
41
45 virtual ~LutzSegmentation() = default;
46
48 : m_source_factory(source_factory),
50 assert(source_factory != nullptr);
51 }
52
54
55private:
58};
59
60} /* namespace SourceXtractor */
61
62#endif
void labelImage(Segmentation::LabellingListener &listener, std::shared_ptr< const DetectionImageFrame > frame) override
LutzSegmentation(std::shared_ptr< SourceFactory > source_factory, int window_size=0)
std::shared_ptr< SourceFactory > m_source_factory
virtual ~LutzSegmentation()=default
Destructor.