// ----------------------------------------------------------------------------------------------------- // gs-rs - Graph SLAM in Rust // ----------------------------------------------------------------------------------------------------- // // SPDX-FileCopyrightText: © 2020 Samuel Valenzuela (samuel.valenzuela@tngtech.com) // © 2020 Florian Rohm (florian.rohm@tngtech.com) // © 2020 Daniel Pape (daniel.pape@tngtech.com) // SPDX-License-Identifier: MIT OR Apache-2.0 // // This product includes software developed at TNG Technology Consulting GmbH (https://www.tngtech.com/). // use gs_rs::optimizer::optimize; use gs_rs::parser::json::JsonParser; use gs_rs::parser::Parser; fn main() { // parse json file containing 2D variables and odometries to internal factor graph representation let factor_graph = JsonParser::parse_file("examples/io_files/MIT_2D.json").unwrap(); // optimize the factor graph's variables with 10 iterations optimize(&factor_graph, 10); // compose json file containing optimized 2D variables and unchanged odometries JsonParser::compose_file(&factor_graph, "examples/io_files/MIT_2D_optimized.json").unwrap(); }