Aircraft Detection 1.0
Loading...
Searching...
No Matches
pipeline.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6
7
8void parseArguments(int argc, char** argv, std::vector<std::string>& steps);
9
10void printHelp();
11
12void checkPreviousStep(const std::string& current_step);
13
14void executeStep(const std::string& step);
void printHelp()
Prints the help message for the Aircraft Detection Project.
Definition pipeline.cpp:426
void checkPreviousStep(const std::string &current_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