ndicapi 3.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ndicapi-3.2.5/PKG-INFO +65 -0
- ndicapi-3.2.5/README.md +38 -0
- ndicapi-3.2.5/ndicapi.cxx +3965 -0
- ndicapi-3.2.5/ndicapi.egg-info/PKG-INFO +65 -0
- ndicapi-3.2.5/ndicapi.egg-info/SOURCES.txt +12 -0
- ndicapi-3.2.5/ndicapi.egg-info/dependency_links.txt +1 -0
- ndicapi-3.2.5/ndicapi.egg-info/top_level.txt +1 -0
- ndicapi-3.2.5/ndicapi_math.cxx +295 -0
- ndicapi-3.2.5/ndicapi_serial.cxx +58 -0
- ndicapi-3.2.5/ndicapi_socket.cxx +29 -0
- ndicapi-3.2.5/ndicapi_thread.cxx +273 -0
- ndicapi-3.2.5/ndicapimodule.cxx +1943 -0
- ndicapi-3.2.5/setup.cfg +4 -0
- ndicapi-3.2.5/setup.py +62 -0
ndicapi-3.2.5/PKG-INFO
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ndicapi
|
|
3
|
+
Version: 3.2.5
|
|
4
|
+
Summary: This package allows interfacing with NDI tracking devices
|
|
5
|
+
Home-page: https://github.com/thompson318/ndicapi
|
|
6
|
+
Maintainer: Stephen Thompson
|
|
7
|
+
Maintainer-email: s.thompson@ucl.ac.uk
|
|
8
|
+
License: MIT
|
|
9
|
+
Description: [](https://travis-ci.com/thompson318/ndicapi)
|
|
10
|
+
[](https://ci.appveyor.com/project/thompson318/ndicapi)
|
|
11
|
+
|
|
12
|
+
# History
|
|
13
|
+
* Program: NDI Combined API C Interface Library
|
|
14
|
+
* Creator: David Gobbi
|
|
15
|
+
* Language: English
|
|
16
|
+
* Authors:
|
|
17
|
+
* David Gobbi
|
|
18
|
+
* Andras Lasso <lassoan@queensu.ca>
|
|
19
|
+
* Adam Rankin <arankin@robarts.ca>
|
|
20
|
+
* Stephen Thompson <s.thompson@ucl.ac.uk>
|
|
21
|
+
|
|
22
|
+
# Overview
|
|
23
|
+
|
|
24
|
+
This package provides a portable C library that provides a straightforward interface to AURORA, POLARIS, and VEGA systems manufactured by Northern Digital Inc. This library is provided by the Plus library, and is not supported by Northern Digital Inc.
|
|
25
|
+
|
|
26
|
+
This fork implements continuous integration and deployment of binary Python wheels to PyPi. Otherwise it should remain identical to the upstream project.
|
|
27
|
+
|
|
28
|
+
## Building
|
|
29
|
+
Building and deployment should be handled automatically using Travis (mac and linux) and Appveyor services. For details read .travis.yml and appveyor.yml.
|
|
30
|
+
|
|
31
|
+
At present mac and manylinux wheels are built and deployed using using matthew-brett/multibuild, under the project thompson318/ndicapi-wheels. Windows wheels can be downloaded from appveyor artifacts and uploaded manually.
|
|
32
|
+
|
|
33
|
+
## Contents
|
|
34
|
+
The main contents of this package are as follows:
|
|
35
|
+
|
|
36
|
+
1) A C library (libndicapi.a, ndicapi.lib/dll) that provides a set of C functions for communicating with an NDI device via the NDI Combined API. The documentation for this library is provided in the ndicapi_html directory.
|
|
37
|
+
|
|
38
|
+
2) Two C++ header files (ndicapi.h and ndicapi_math.h) that provide and interface, via libndicapi.a, to an NDI device via the NDICAPI Serial Communications API that predated the Combined API. Documentation is provided in the polaris_html directory.
|
|
39
|
+
|
|
40
|
+
4) A pythoninterface to the ndicapi library. However, only the original POLARIS API is supported through python. The full ndicapi interface is not yet supported.
|
|
41
|
+
|
|
42
|
+
## Acknowledgments
|
|
43
|
+
|
|
44
|
+
The implementation of continuous integration and deployment was Supported by the [Wellcome Trust](https://wellcome.ac.uk/) and the [EPSRC](https://www.epsrc.ac.uk/) as part of the [Wellcome Centre for Interventional and Surgical Sciences](http://www.ucl.ac.uk/weiss).
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
Platform: UNKNOWN
|
|
49
|
+
Classifier: Development Status :: 3 - Alpha
|
|
50
|
+
Classifier: Environment :: Console
|
|
51
|
+
Classifier: Intended Audience :: Developers
|
|
52
|
+
Classifier: Intended Audience :: Education
|
|
53
|
+
Classifier: Intended Audience :: Information Technology
|
|
54
|
+
Classifier: Intended Audience :: Science/Research
|
|
55
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
56
|
+
Classifier: Operating System :: MacOS
|
|
57
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
58
|
+
Classifier: Operating System :: POSIX
|
|
59
|
+
Classifier: Operating System :: Unix
|
|
60
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
61
|
+
Classifier: Programming Language :: C
|
|
62
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
63
|
+
Classifier: Topic :: Scientific/Engineering
|
|
64
|
+
Classifier: Topic :: System :: Hardware
|
|
65
|
+
Description-Content-Type: text/markdown
|
ndicapi-3.2.5/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[](https://travis-ci.com/thompson318/ndicapi)
|
|
2
|
+
[](https://ci.appveyor.com/project/thompson318/ndicapi)
|
|
3
|
+
|
|
4
|
+
# History
|
|
5
|
+
* Program: NDI Combined API C Interface Library
|
|
6
|
+
* Creator: David Gobbi
|
|
7
|
+
* Language: English
|
|
8
|
+
* Authors:
|
|
9
|
+
* David Gobbi
|
|
10
|
+
* Andras Lasso <lassoan@queensu.ca>
|
|
11
|
+
* Adam Rankin <arankin@robarts.ca>
|
|
12
|
+
* Stephen Thompson <s.thompson@ucl.ac.uk>
|
|
13
|
+
|
|
14
|
+
# Overview
|
|
15
|
+
|
|
16
|
+
This package provides a portable C library that provides a straightforward interface to AURORA, POLARIS, and VEGA systems manufactured by Northern Digital Inc. This library is provided by the Plus library, and is not supported by Northern Digital Inc.
|
|
17
|
+
|
|
18
|
+
This fork implements continuous integration and deployment of binary Python wheels to PyPi. Otherwise it should remain identical to the upstream project.
|
|
19
|
+
|
|
20
|
+
## Building
|
|
21
|
+
Building and deployment should be handled automatically using Travis (mac and linux) and Appveyor services. For details read .travis.yml and appveyor.yml.
|
|
22
|
+
|
|
23
|
+
At present mac and manylinux wheels are built and deployed using using matthew-brett/multibuild, under the project thompson318/ndicapi-wheels. Windows wheels can be downloaded from appveyor artifacts and uploaded manually.
|
|
24
|
+
|
|
25
|
+
## Contents
|
|
26
|
+
The main contents of this package are as follows:
|
|
27
|
+
|
|
28
|
+
1) A C library (libndicapi.a, ndicapi.lib/dll) that provides a set of C functions for communicating with an NDI device via the NDI Combined API. The documentation for this library is provided in the ndicapi_html directory.
|
|
29
|
+
|
|
30
|
+
2) Two C++ header files (ndicapi.h and ndicapi_math.h) that provide and interface, via libndicapi.a, to an NDI device via the NDICAPI Serial Communications API that predated the Combined API. Documentation is provided in the polaris_html directory.
|
|
31
|
+
|
|
32
|
+
4) A pythoninterface to the ndicapi library. However, only the original POLARIS API is supported through python. The full ndicapi interface is not yet supported.
|
|
33
|
+
|
|
34
|
+
## Acknowledgments
|
|
35
|
+
|
|
36
|
+
The implementation of continuous integration and deployment was Supported by the [Wellcome Trust](https://wellcome.ac.uk/) and the [EPSRC](https://www.epsrc.ac.uk/) as part of the [Wellcome Centre for Interventional and Surgical Sciences](http://www.ucl.ac.uk/weiss).
|
|
37
|
+
|
|
38
|
+
|