forked from varoudis/depthmapX
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathsegmentparser.h
More file actions
67 lines (51 loc) · 1.81 KB
/
segmentparser.h
File metadata and controls
67 lines (51 loc) · 1.81 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (C) 2018 Petros Koutsolampros
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include "imodeparser.h"
#include "genlib/p2dpoly.h"
class SegmentParser : public IModeParser
{
public:
SegmentParser();
// IModeParser interface
public:
std::string getModeName() const;
std::string getHelp() const;
void parse(int argc, char **argv);
void run(const CommandLineParser &clp, IPerformanceSink &perfWriter) const;
enum class AnalysisType {
NONE,
ANGULAR_TULIP,
ANGULAR_FULL,
TOPOLOGICAL,
METRIC
};
enum class RadiusType {
NONE,
SEGMENT_STEPS,
ANGULAR,
METRIC
};
AnalysisType getAnalysisType() const { return m_analysisType; }
RadiusType getRadiusType() const { return m_radiusType; }
bool includeChoice() const { return m_includeChoice; }
int getTulipBins() const { return m_tulipBins; }
const std::vector<double> getRadii() const { return m_radii;}
const std::string getAttribute() const { return m_attribute;}
private:
AnalysisType m_analysisType;
RadiusType m_radiusType;
bool m_includeChoice;
int m_tulipBins;
std::vector<double> m_radii;
std::string m_attribute;
};