From 3db5760d73927d03845c0eea30c6fce974c0f9fd Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nwpope@utu.fi> Date: Thu, 7 Nov 2019 17:53:18 +0200 Subject: [PATCH] Disable cross support by default --- applications/reconstruct/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/reconstruct/src/main.cpp b/applications/reconstruct/src/main.cpp index 9573ec7fa..457ee985e 100644 --- a/applications/reconstruct/src/main.cpp +++ b/applications/reconstruct/src/main.cpp @@ -303,9 +303,9 @@ static void run(ftl::Configurable *root) { pipeline1->append<ftl::operators::Normals>("normals"); // Estimate surface normals //pipeline1->append<ftl::operators::SmoothChannel>("smoothing"); // Generate a smoothing channel //pipeline1->append<ftl::operators::ScanFieldFill>("filling"); // Generate a smoothing channel - pipeline1->append<ftl::operators::CrossSupport>("cross"); + pipeline1->append<ftl::operators::CrossSupport>("cross")->set("enabled", false); pipeline1->append<ftl::operators::ColourMLS>("mls"); // Perform MLS (using smoothing channel) - pipeline1->append<ftl::operators::VisCrossSupport>("viscross"); + pipeline1->append<ftl::operators::VisCrossSupport>("viscross")->set("enabled", false); // Alignment -- GitLab