LARS
LARS (Light Augmented Reality System) is an open-source framework for light-based interaction and real-time tracking in multi-robot experiments. Inspired by ARK, LARS extends the augmented reality paradigm to robotic collectives by projecting dynamic visual cues and environments onto the arena, enabling new experimental possibilities for collective robotics research, education, and outreach. LARS features integrated tracking, light projection, and modular experiment control with a user-friendly Qt GUI.
Loading...
Searching...
No Matches
publicvars.h
1#ifndef PUBLICVARS_H
2#define PUBLICVARS_H
3
4#include <iostream>
5//using namespace std;
6
7class publicVars
8{
9public:
10 publicVars();
11// class camera
12// {
13// public:
14// camera();
15 std::string camNo = "1";
16
17 std::string zoomStopCmd = camNo + "00" + camNo;
18
19 // Default set 1
20 int temp_set1 = 10;
21
22
23 // Default set 2
24 int temp_set2 = 20;
25
26
27
28// };
29};
30
31#endif // PUBLICVARS_H