fusion_tracker_gflags.cc 1.9 KB
Newer Older
W
WhitingHuo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/******************************************************************************
 * Copyright 2020 The Apollo Authors. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *****************************************************************************/

/**
 * File: fusion_gflags.cpp
 * Brief: Global flags definition.
 */

#include "modules/v2x/fusion/configs/fusion_tracker_gflags.h"

namespace apollo {
namespace v2x {
namespace ft {

// config manager
DEFINE_string(config_manager_path, "./conf", "The ModelConfig config paths.");
DEFINE_string(work_root, "", "Project work root direcotry.");
DEFINE_string(config_path, "/apollo/modules/v2x/data",
              "ADU shared data path, including maps, routings...");
DEFINE_string(v2x_module_name, "v2x_fusion", "name");
DEFINE_string(localization_topic, "/apollo/localization/pose",
              "localization topic name");
DEFINE_string(v2x_obstacles_topic, "/apollo/v2x/original_obstacles",
              "perception obstacle topic name");
DEFINE_string(v2x_fusion_obstacles_topic, "/apollo/msf/obstacles",
              "perception obstacle topic name");
DEFINE_bool(use_v2x, false, "use v2x");
// fusion
DEFINE_string(fusion_conf_file, "fusion_params.pt", "the roi conf path");
// app
DEFINE_string(app_conf_file, "app_config.pt", "the inputs conf path");

}  // namespace ft
}  // namespace v2x
}  // namespace apollo