8void parseArguments(
int argc,
char** argv, std::vector<std::string>& steps);
void printHelp()
Prints the help message for the Aircraft Detection Project.
Definition pipeline.cpp:426
void checkPreviousStep(const std::string ¤t_step)
Checks if the previous step required for the current step has been executed.
Definition pipeline.cpp:367
void parseArguments(int argc, char **argv, std::vector< std::string > &steps)
Parses command-line arguments to extract the list of steps to be executed.
Definition pipeline.cpp:388
void executeStep(const std::string &step)
Executes the specified step if it is defined in the step functions map.
Definition pipeline.cpp:406