Skip to content
Snippets Groups Projects
Commit 848b3d54 authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Finishing polylines_autoconf

parent b9c12185
No related branches found
No related tags found
No related merge requests found
......@@ -1494,11 +1494,14 @@ ProcessorBasePtr ProcessorTrackerFeaturePolyline2D::create(const std::string& _u
return prc_ptr;
}
ProcessorBasePtr ProcessorTrackerFeaturePolyline2D::createAutoConf(const std::string& _unique_name, const paramsServer& _server, const SensorBasePtr sensor_ptr)
ProcessorBasePtr ProcessorTrackerFeaturePolyline2D::createAutoConf(const std::string& _unique_name, const paramsServer& _server, const SensorBasePtr _sensor_ptr)
{
auto params = std::make_shared<ProcessorParamsTrackerFeaturePolyline2D>(_unique_name, _server);
WOLF_TRACE("\n", params->print());
return nullptr;
auto prc_ptr = std::make_shared<ProcessorTrackerFeaturePolyline2D>(params);
prc_ptr->setName(_unique_name);
prc_ptr->configure(_sensor_ptr);
return prc_ptr;
}
} /* namespace wolf */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment