Am5os
 All Classes Functions Pages
humans_in_front_of_bus_scenario.h
1 
2 // Projectname: amos-ss16-proj5
3 //
4 // Created on 03.06.2016.
5 // Copyright (c) 2016 de.fau.cs.osr.amos2016.gruppe5
6 //
7 // This file is part of the AMOS Project 2016 @ FAU
8 // (Friedrich-Alexander University Erlangen-Nürnberg)
9 //
10 // This program is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU Affero General Public License as
12 // published by the Free Software Foundation, either version 3 of the
13 // License, or (at your option) any later version.
14 //
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU Affero General Public License for more details.
19 //
20 // You should have received a copy of the GNU Affero General Public
21 // License along with this program. If not, see
22 // <http://www.gnu.org/licenses/>.
23 //
24 
25 #ifndef HUMANS_IN_FRONT_OF_BUS_SCENARIO_H
26 #define HUMANS_IN_FRONT_OF_BUS_SCENARIO_H
27 
28 //local
29 #include "scenario.h"
30 
31 //std
32 #include <string>
33 
34 
36 
37 public:
38 
44  virtual bool Detect(FrameDetectionData detected_objects) override;
45 
46 
52  virtual std::string GetScenarioInformation() override;
53 
54 private:
55 
56 };
57 
58 
59 #endif // HUMANS_IN_FRONT_OF_SCENARIO_H
Definition: humans_in_front_of_bus_scenario.h:35
Definition: frame_detection_data.h:41
virtual bool Detect(FrameDetectionData detected_objects) override
Definition: humans_in_front_of_bus_scenario.cpp:32
Definition: scenario.h:35
virtual std::string GetScenarioInformation() override
Definition: humans_in_front_of_bus_scenario.cpp:74