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

Fix default cost ratio

parent 9899dc7b
No related branches found
No related tags found
2 merge requests!116Implements #133 point alignment,!114Ongoing #133 improvements
Pipeline #14656 passed
......@@ -21,7 +21,7 @@ ILW::ILW(nlohmann::json &config) : ftl::Configurable(config) {
use_lab_ = value("use_Lab", false);
params_.colour_smooth = value("colour_smooth", 50.0f);
params_.spatial_smooth = value("spatial_smooth", 0.04f);
params_.cost_ratio = value("cost_ratio", 75.0f);
params_.cost_ratio = value("cost_ratio", 0.75f);
on("ilw_align", [this](const ftl::config::Event &e) {
enabled_ = value("ilw_align", true);
......
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