FastTrack 6.1.0
Tracks multiples objects dealing with occlusion and identities.
Loading...
Searching...
No Matches
cli.h
1/*
2This file is part of Fast Track.
3
4 FastTrack is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 FastTrack is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with FastTrack. If not, see <https://www.gnu.org/licenses/>.
16*/
17
18#ifndef CLI_H
19#define CLI_H
20#include <getopt.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <tracking.h>
24#include <QCoreApplication>
25#include <QHash>
26#include <QHashIterator>
27#include <QObject>
28#include <QString>
29#include <QStringList>
30#include <QTextStream>
31
32using namespace std;
33
34void loadConfig(const QString &path, QHash<QString, QString> &parameters);
35void help();
36int cli(int argc, char **argv);
37
38#endif