Skip to content
Snippets Groups Projects
Commit 3db5760d authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Disable cross support by default

parent c6cf61ff
No related branches found
No related tags found
1 merge request!160Implements #233 cross support region for MLS
Pipeline #16244 passed
...@@ -303,9 +303,9 @@ static void run(ftl::Configurable *root) { ...@@ -303,9 +303,9 @@ static void run(ftl::Configurable *root) {
pipeline1->append<ftl::operators::Normals>("normals"); // Estimate surface normals pipeline1->append<ftl::operators::Normals>("normals"); // Estimate surface normals
//pipeline1->append<ftl::operators::SmoothChannel>("smoothing"); // Generate a smoothing channel //pipeline1->append<ftl::operators::SmoothChannel>("smoothing"); // Generate a smoothing channel
//pipeline1->append<ftl::operators::ScanFieldFill>("filling"); // 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::ColourMLS>("mls"); // Perform MLS (using smoothing channel)
pipeline1->append<ftl::operators::VisCrossSupport>("viscross"); pipeline1->append<ftl::operators::VisCrossSupport>("viscross")->set("enabled", false);
// Alignment // Alignment
......
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