-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
50 lines (45 loc) · 1.34 KB
/
config.js
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
/*
* drone-pet – walk your parrot ar.drone 2.0 like a pet
* Copyright (C) 2016 Jan Koppe, Jan Kruse, Saskia Geuking
*
* 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/>.
*/
var config = {};
// configuration for ar-drone createClient.
config.drone = {
ip: '192.168.1.1',
frameRate: 10,
imageSize: null,
};
config.steering = {
// Base speed for Movements (0-1)
speed: 0.2,
// Speedup if ball is nearly out of viewframe (0-1)
agility: 0.5,
// ignore center of viewframe
ignoreRadius: 0.1,
// resolution of viewframe
res: {
x: 640,
y: 360
}
};
config.filter = {
// Blue, Green, Red
low: [ 0, 0, 70],
high: [ 50, 50, 255],
dilate: 2,
minArea: 1200
};
module.exports = config;