11 lines
237 B
C++
11 lines
237 B
C++
#include "contours_extractor_factory.hpp"
|
|
#include "contours_extractor.hpp"
|
|
|
|
namespace cvpr
|
|
{
|
|
std::shared_ptr<IContoursExtractor> ContoursExtractorFactory::create()
|
|
{
|
|
return std::make_shared<ContoursExtractor>();
|
|
}
|
|
}
|