46 lines
1.6 KiB
C++
Executable File
46 lines
1.6 KiB
C++
Executable File
// ----------------------------------------------------------------------------
|
|
// - Open3D: www.open3d.org -
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright (c) 2018-2023 www.open3d.org
|
|
// SPDX-License-Identifier: MIT
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <Eigen/Core>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace open3d {
|
|
namespace utility {
|
|
|
|
std::string GetProgramOptionAsString(int argc,
|
|
char **argv,
|
|
const std::string &option,
|
|
const std::string &default_value = "");
|
|
|
|
int GetProgramOptionAsInt(int argc,
|
|
char **argv,
|
|
const std::string &option,
|
|
const int default_value = 0);
|
|
|
|
double GetProgramOptionAsDouble(int argc,
|
|
char **argv,
|
|
const std::string &option,
|
|
const double default_value = 0.0);
|
|
|
|
Eigen::VectorXd GetProgramOptionAsEigenVectorXd(
|
|
int argc,
|
|
char **argv,
|
|
const std::string &option,
|
|
const Eigen::VectorXd default_value = Eigen::VectorXd::Zero(0));
|
|
|
|
bool ProgramOptionExists(int argc, char **argv, const std::string &option);
|
|
|
|
bool ProgramOptionExistsAny(int argc,
|
|
char **argv,
|
|
const std::vector<std::string> &options);
|
|
|
|
} // namespace utility
|
|
} // namespace open3d
|