Skip to content
Snippets Groups Projects

Implements #228 adaptive MLS and smoothing channel

Merged Nicolas Pope requested to merge feature/mlssmooth into master
2 files
+ 4
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -247,11 +247,13 @@ static void run(ftl::Configurable *root) {
bool busy = false;
// Create the source depth map filters
// Create the source depth map pipeline
auto *prefilter = ftl::config::create<ftl::operators::Graph>(root, "pre_filters");
prefilter->append<ftl::operators::ColourChannels>("colour");
prefilter->append<ftl::operators::HFSmoother>("hfnoise");
// Smooth normals
prefilter->append<ftl::operators::SimpleMLS>("mls");
// Alignment
//auto *postfilter = ftl::config::create<ftl::Filters>(root, "post_filters");
//postfilter->create<ftl::filters::DepthSmoother>("hfnoise");
Loading