File: Utils.txt

package info (click to toggle)
openni 1.5.4.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 44,844 kB
  • sloc: cpp: 116,706; ansic: 58,777; sh: 10,287; cs: 7,698; java: 7,402; python: 1,541; makefile: 492; xml: 167
file content (62 lines) | stat: -rw-r--r-- 1,309 bytes parent folder | download | duplicates (7)
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
/**
@page cmdutils Command-Line Utilities

OpenNI arrives with the following command-line utilities:
- @subpage nireg
- @subpage nilicense
*/







/**
@page nireg niReg

niReg allows registration and deregistration of modules from OpenNI. Registered modules participate in
the enumeration process.
This utility is commonly used by modules installations.

@section nireg_usage Usage

@code
niReg [options] <module_path> [config_dir]
@endcode

The following options can be used:
- @b -r	Registers a module to OpenNI.
- @b -u	Unregisters a module from OpenNI.

If no option is supplied, @c -r is assumed.

When registering a module, an optional configuration directory can be passed. This directory will be passed
to the module when loaded from OpenNI, allowing it to have custom configuration files.
*/








/**
@page nilicense niLicense

niLicense allows adding or removing licenses from the global license registry.
This utility is commonly used by modules installations.

@section nireg_usage Usage

@code
niLicense [options] <vendor> <key>
@endcode

The following options can be used:
- @b -r	Registers a license to the global registry.
- @b -u	Unregisters a module from the global registry.

If no option is supplied, @c -r is assumed.
*/