OSVR-Core
HDKLedIdentifierFactory.h
Go to the documentation of this file.
1 
11 // Copyright 2015 Sensics, Inc.
12 //
13 // Licensed under the Apache License, Version 2.0 (the "License");
14 // you may not use this file except in compliance with the License.
15 // You may obtain a copy of the License at
16 //
17 // http://www.apache.org/licenses/LICENSE-2.0
18 //
19 // Unless required by applicable law or agreed to in writing, software
20 // distributed under the License is distributed on an "AS IS" BASIS,
21 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 // See the License for the specific language governing permissions and
23 // limitations under the License.
24 
25 #ifndef INCLUDED_HDKLedIdentifierFactory_h_GUID_7CB9381C_A55F_49B4_7322_DB88F3B8AD65
26 #define INCLUDED_HDKLedIdentifierFactory_h_GUID_7CB9381C_A55F_49B4_7322_DB88F3B8AD65
27 
28 // Internal Includes
29 #include "Types.h"
30 #include "LedIdentifier.h"
31 
32 // Library/third-party includes
33 // - none
34 
35 // Standard includes
36 #include <stdint.h>
37 
38 namespace osvr {
39 namespace vbtracker {
40 
43  LedIdentifierPtr createHDKLedIdentifier(uint8_t sensor);
44 
49  LedIdentifierPtr createHDKLedIdentifierSimulated(uint8_t sensor);
50 
54  LedIdentifierPtr createHDKUnifiedLedIdentifier();
55 
58  LedIdentifierPtr createRandomHDKLedIdentifier();
59 } // End namespace vbtracker
60 } // End namespace osvr
61 
62 #endif // INCLUDED_HDKLedIdentifierFactory_h_GUID_7CB9381C_A55F_49B4_7322_DB88F3B8AD65
Header file for class that identifies LEDs based on blink codes.
The main namespace for all C++ elements of the framework, internal and external.
Definition: namespace_osvr.dox:3
LedIdentifierPtr createRandomHDKLedIdentifier()
Factory function to create an HDK Led Identifier object using the random images patterns.
Definition: HDKLedIdentifierFactory.cpp:241
Header.
LedIdentifierPtr createHDKLedIdentifier(uint8_t sensor)
Factory function to create an HDK Led Identifier object.
Definition: HDKLedIdentifierFactory.cpp:157
LedIdentifierPtr createHDKUnifiedLedIdentifier()
Factory function to create an HDK Led Identifier object containing all the beacons in order for the f...
Definition: HDKLedIdentifierFactory.cpp:172
LedIdentifierPtr createHDKLedIdentifierSimulated(uint8_t sensor)
Factory function to create an HDK Led Identifier object using the presumed order that generated the s...
Definition: HDKLedIdentifierFactory.cpp:183