forked from thp/psmoveapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
143 lines (97 loc) · 4.94 KB
/
README
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
____ _____ __ ___ ___ ____ ____
/ __ \/ ___/ / |/ /___ _ _____ / | / __ \/ _/
/ /_/ /\__ \ / /|_/ / __ \ | / / _ \ / /| | / /_/ // /
/ ____/___/ / / / / / /_/ / |/ / __/ / ___ |/ ____// /
/_/ /____/ /_/ /_/\____/|___/\___/ /_/ |_/_/ /___/
http://thp.io/2010/psmove/
The PS Move API is an open source[1] library for Linux, Mac OS X and Windows
to access the Sony Move Motion Controller via Bluetooth and USB directly from
your PC without the need for a PS3. Tracking in 3D space is possible using a
PS Eye (on Linux and Windows), an iSight camera (on Mac OS X) or any other
suitable camera source.
The PS Move API is used as the library implementation of the MoveOnPC[2]
project, and has successfully participated in Google Summer of Code 2012[3].
Detailed documentation can be found in my master's thesis[4] about sensor
fusion.
Core Features
-------------
* Pairing of Bluetooth controllers via USB
* Setting LEDs and rumble via USB and Bluetooth
* Reading inertial sensors and buttons via Bluetooth
* Tracking up to 5 controllers in 3D space via OpenCV
* 3D orientation tracking via an open source AHRS algorithm
* Sensor fusion for augmented and virtual reality applications
Supported Languages
-------------------
* Core library written in C for portability and performance
* SWIG-based bindings for Python, Java, Processing and C#
Need Help?
----------
* Free community-based support via the PS Move Mailing List[5]
* Professional support and custom development upon request[6]
Building and Installation
-------------------------
* See the INSTALL and README.* files for details on building and
installing the PS Move API on your system
* Build scripts that we use for building binary releases can be found
in the contrib/ folder
* A debian/ folder is provided for building .deb packages
* Contributions (.spec files, etc..) for other distributions welcome
Hacking the Source
------------------
* See the LAYOUT file for information on how the source tree is laid out
* Coding style: No strict rules; keep consistent with the surrounding code
* Patches should be submitted on Github as pull request[7]
* Bug reports and feature requests can be added to the issue tracker[8]
Environment Variables
---------------------
PSMOVE_TRACKER_CAMERA
If set, this is the camera that will be used when using
psmove_tracker_new() instead of using auto-detection
Example: export PSMOVE_TRACKER_CAMERA=2 # Will use the 3rd camera
PSMOVE_TRACKER_FILENAME
If set, this will use a video file to playback instead of
capturing from a camera. Any camera settings are ignored.
Example: export PSMOVE_TRACKER_FILENAME=demo.avi # Will play demo.avi
PSMOVE_TRACKER_ROI_SIZE
If set, this controls the size of the biggest (initial) ROI that will
be used to track the controller. Bigger means slower in general, but
recovery from tracking loss might be faster.
Example: export PSMOVE_TRACKER_ROI_SIZE=200
PSMOVE_TRACKER_WIDTH, PSMOVE_TRACKER_HEIGHT
If set, these variables control the desired size of the camera picture.
Example: export PSMOVE_TRACKER_WIDTH=1280
export PSMOVE_TRACKER_HEIGHT=720
Licensing
---------
The PS Move API source code is released under the terms of a Simplified
BSD-style license, the exact license text can be found in the COPYING file.
Some third party code under "external/" might be licensed under a different
license. Compiling PS Move API with these modules is optional, you can use
CMake options to configure which features you need. CMake will give you a
hint about the library licensing for your current configuration depending
on your options at configure time.
In general, all dependencies are under a MIT- or BSD-style license, with the
exception of the following dependencies:
- PS3EYEDriver: Released under the MIT license, parts based on GPL code
For interfacing with the PSEye camera on OS X (only in the tracker)
CMake option: PSMOVE_USE_PS3EYE_DRIVER (disabled by default)
More information about the third party modules and licenses:
- http://thp.io/2012/thesis/thesis.pdf (page 51-53)
- File "external/README" in this source tree
More Information
----------------
* License: Simplified BSD-style license (see COPYING and "Licensing" above)
* Maintainer: Thomas Perl <m@thp.io>
* Website: http://thp.io/2010/psmove/
* Git repository: https://github.com/thp/psmoveapi
* Mailing list: psmove@googlegroups.com (see [5] for details)
This README file was last updated on 2012-12-12 by thp
[1] https://github.com/thp/psmoveapi/blob/master/COPYING
[2] http://code.google.com/p/moveonpc/
[3] http://www.google-melange.com/gsoc/homepage/google/gsoc2012
[4] http://thp.io/2012/thesis/
[5] https://groups.google.com/forum/#!aboutgroup/psmove
[6] http://thp.io/about
[7] https://github.com/thp/psmoveapi/pulls
[8] https://github.com/thp/psmoveapi/issues