Show last authors
1 = Building and Running the Pinball Autopilot on the Raspberry Pi =
2
3 The source code lies and building happens inside the folder called {{code language="none"}}pinballProject{{/code}}. For a fresh build, you need a not too old version of {{code language="none"}}make{{/code}}, a C++ compiler (we only tested {{code language="none"}}g++{{/code}}), an internet connection (for downloading the Kieler Compiler), the libraries {{code language="none"}}wiringPi{{/code}} and {{code language="none"}}opencv{{/code}} as well as the command-line tools [[mega-cmd>>url:https://mega.nz/cmd||shape="rect"]] and {{code language="none"}}python2{{/code}}. The tool for mega.nz (and also {{code language="none"}}python2{{/code}}) can be omitted (see below on how to compile without them), everything else except for {{code language="none"}}opencv{{/code}} comes pre-installed with Raspbian. For {{code language="none"}}opencv{{/code}} you need a 4.x version, 4.2.0 ought to work for example. Make sure to enable the option that the entries for {{code language="none"}}pkg-config{{/code}} get configured. It can be built from source on the Raspberry Pi in a few hours, make sure not to use too many threads for compilation because of limited RAM, also perhaps increase the swap.
4
5 With all the prerequisites met, you can use the {{code language="none"}}Makefile{{/code}} to build everything.
6
7 (% class="wrapped" %)
8 |=(((
9 Command
10 )))|=(((
11 Functionality (All the builds are incremental, i.e. only happen once when the source code is unchanged.)
12 )))
13 |(((
14 {{code language="none"}}
15 make
16 {{/code}}
17 )))|(((
18 same as 
19
20 {{code language="none"}}
21 make build_all
22 {{/code}}
23 )))
24 |(((
25 {{code language="none"}}
26 make build_all
27 {{/code}}
28 )))|(((
29 Build the main executable as well as the tools 
30
31 {{code language="none"}}
32 video_capture
33 {{/code}}
34
35 and 
36
37 {{code language="none"}}
38 calibrate
39 {{/code}}
40
41 .
42 )))
43 |(((
44 {{code language="none"}}
45 make build
46 {{/code}}
47 )))|(((
48 Build the main executable “
49
50 {{code language="none"}}
51 main
52 {{/code}}
53
54 ”.
55 )))
56 |(((
57 {{code language="none"}}
58 make run
59 {{/code}}
60 )))|(((
61 Build and execute the main executable.
62 )))
63 |(((
64 {{code language="none"}}
65 make ...xyz
66 {{/code}}
67 )))|(((
68 Make file called “
69
70 {{code language="none"}}
71 ...xyz
72 {{/code}}
73
74 ”, if a recipe exists. Most notably for 
75
76 {{code language="none"}}
77 ...xyz
78 {{/code}}
79
80 ~= 
81
82 {{code language="none"}}
83 calibrate
84 {{/code}}
85 )))
86 |(((
87 {{code language="none"}}
88 make capture
89 {{/code}}
90 )))|(((
91 Build {{code language="none"}}video_capture{{/code}} and execute it. This tool can only be executed on the Pi and can record a video
92 during manual gameplay which is then uploaded to mega.nz with a new numerical file-name.
93 )))
94 |(((
95 {{code language="none"}}
96 make get
97 {{/code}}
98 )))|(((
99 Executes a python script that can (interactively) get a recorded video from the mega.nz folder.
100 Intended for getting video input files transferred to a different machine (not the Pi) for testing the image detection.
101 )))
102 |(% colspan="1" %)(% colspan="1" %)
103 (((
104 {{code language="none"}}
105 make clean
106 {{/code}}
107 )))|(% colspan="1" %)(% colspan="1" %)
108 (((
109 Removes all generated files except for
110
111 {{code language="none"}}
112 _pi_logged_in
113 {{/code}}
114
115 , downloaded videos and the downloaded Kieler Compiler.
116 )))
117 |(% colspan="1" %)(% colspan="1" %)
118 (((
119 {{code language="none"}}
120 make clean_all
121 {{/code}}
122 )))|(% colspan="1" %)(% colspan="1" %)
123 (((
124 Like
125
126 {{code language="none"}}
127 make clean
128 {{/code}}
129
130 , but without the exceptions. This will delete everything in the folder 
131
132 {{code language="none"}}
133 video
134 {{/code}}
135
136 !
137 )))
138
139 For instructions on how to use the {{code language="none"}}./calibrate{{/code}}, see [[doc:Projects.Archive.Pinball Project - Winter Term 201920.Project Documentation.World Coordinate System.WebHome]].
140
141 Working without mega.nz (and python): On the pi, you need to create a file called {{code language="none"}}_pi_logged_in{{/code}} (e.g. with {{code language="none"}}touch _pi_logged_in{{/code}}) before calling {{code language="none"}}make{{/code}} for the first time. On a different machine, you don’t need to do this. You cannot use {{code language="none"}}make capture{{/code}} or {{code language="none"}}make get{{/code}} without these command-line tools.
142
143 If future updates of {{code language="none"}}mega-cmd{{/code}} or the command-line Kieler Compiler {{code language="none"}}kico.jar{{/code}} include relevant breaking changes, you might need to resolve those problems (work without {{code language="none"}}mega-cmd{{/code}} or acquire a {{code language="none"}}kico.jar{{/code}} from around March 2020).
144
145 = Setting up the Pi for Better Real Time Performance =
146
147 The program will stick its latency-sensitive threads for controlling the IO pins and for image processing to the cores 3 and 4 of the 4-core Raspberry Pi. To ensure best real-time performance, please configure the kernel parameter (% style="color: rgb(0,0,0);font-family: SFMono-Medium , SF Mono , Segoe UI Mono , Roboto Mono , Ubuntu Mono , Menlo , Courier , monospace;" %)2,3{{code language="none"}}isolcpus={{/code}}(%%) (they count starting from 0) to the file {{code language="none"}}/boot/cmdline.txt{{/code}} and reboot. This will make sure that the operating system doesn’t schedule any other tasks on those cores.
148
149 = Building and Running on Any Other Linux Machine =
150
151 The program can be built and partially run on other machines. There you potentially need to install all the requirements yourself. However, {{code language="none"}}wiringPi{{/code}} is not needed. Also don’t use a machine where the current user is called {{code language="none"}}pi{{/code}}, since that would confuse the compilation flags. We’ve observed problems with a too old version for {{code language="none"}}make{{/code}}, without knowing the exact lower bound, 4.2.1 is definitely new enough. Possibly {{code language="none"}}python2{{/code}} needs to be installed on your machine. Compared to a Raspberry Pi, compilation of {{code language="none"}}opencv{{/code}} on your machine is going to be a lot more fun (way faster and no issues with too little RAM). Regarding versions, see the relevant section above; note that {{code language="none"}}pkg-config{{/code}} is needed, too, in case you don’t have that installed already.
152
153 Running the {{code language="none"}}make{{/code}} commands works like on the Pi. Just {{code language="none"}}make capture{{/code}} is not available. The main program will behave differently. It will prompt you for the name (without extension) of a video file in the {{code language="none"}}video{{/code}} folder. Make sure to get some file in there; at the time of writing this, there is a file called {{code language="none"}}1{{/code}} in the mega.nz-folder that you can get via {{code language="none"}}make get{{/code}}, as well as a few more named video files that were created before we had the {{code language="none"}}make capture{{/code}} command.
154
155 After choosing a video file, the program starts using the video input in “real time”; however, since things are not really real-time, the logic controller part does not work too well. (Simulating the flow of time properly is not fundamentally a problem but something we didn’t finish implementing.) This means you should mostly ignore the debug-printouts about ticks happening. What you can really test is the image processing / ball detection. This works better than on the Pi, because we are providing controls for pausing or changing the playback speed. Press a key while any of the windows opened by the main program is in focus.
156
157 (% class="wrapped" %)
158 |=(((
159 Key
160 )))|=(((
161 Playback effect
162 )))
163 |(((
164 {{code language="none"}}
165 <space>
166 {{/code}}
167 )))|(((
168 play/pause
169 )))
170 |(((
171 {{code language="none"}}
172 +
173 {{/code}}
174 )))|(((
175 increase playback speed ×2
176 )))
177 |(((
178 {{code language="none"}}
179 -
180 {{/code}}
181 )))|(((
182 decrease playback speed ×0.5
183 )))
184 |(% colspan="1" %)(% colspan="1" %)
185 (((
186 {{code language="none"}}
187 .
188 {{/code}}
189 )))|(% colspan="1" %)(% colspan="1" %)
190 (((
191 while paused, advance by one frame
192 )))
193
194 If you recalibrate the coordinate system on the Pi, you might want to transfer the config file for the coordinate system (however there is nothing really depending on the coordinate transformation being correct inside the image detection anyways).
195
196 The ability to compiler the whole project off the Pi allows for catching type errors etc. more quickly, since compilation on the Pi tends to be a lot slower and also there‘s not the option to use the Kieler IDE on it (so you’d maybe also need to transfer the code). The {{code language="none"}}pinballProject{{/code}} folder contains an Eclipse project that can be used with Kieler. Building from the Kieler IDE still happens by invoking the Makefile. There should be a build configuration using {{code language="none"}}make{{/code}} included in the project. (I’m only specifying “should” since we didn’t really test the experience of importing the project into a workspace too often.)