Metadata-Version: 2.1
Name: phase
Version: 0.2.0
Summary: Python API for I3DR's Phase Library
Home-page: https://i3drobotics.github.io/phase/python/html/index.html
Author: Ben Knight
Author-email: bknight@i3drobotics.com
License: UNKNOWN
Project-URL: Documentation, https://i3drobotics.github.io/phase/python/html/index.html
Project-URL: Issues, https://github.com/i3drobotics/phase/issues
Keywords: Industrial 3D Robotics I3DR stereo camera
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy (>=1.13.3) ; python_version < "3.7"
Requires-Dist: numpy (>=1.21.2) ; python_version >= "3.10"
Requires-Dist: numpy (>=1.21.2) ; python_version >= "3.6" and platform_system == "Darwin" and platform_machine == "arm64"
Requires-Dist: numpy (>=1.19.3) ; python_version >= "3.6" and platform_system == "Linux" and platform_machine == "aarch64"
Requires-Dist: numpy (>=1.14.5) ; python_version >= "3.7"
Requires-Dist: numpy (>=1.17.3) ; python_version >= "3.8"
Requires-Dist: numpy (>=1.19.3) ; python_version >= "3.9"

# pyPhase
Python wrapper for I3DR's Phase Library.  

## Install
### Windows
Install pyPhase from pypi using pip:
```
pip install phase
```
### Linux
Install dependencies
```
sudo apt install -y libavcodec-dev libavformat-dev libswscale-dev
sudo apt install -y libgl-dev liblapack-dev libblas-dev libgtk2.0-dev
sudo apt install -y libgstreamer1.0-0 libgstreamer-plugins-base1.0-0
sudo apt install -y zlib1g libstdc++6
sudo apt install -y libc6 libgcc1
```
Package is not yet available on pypi for Linux.  
Please download the wheel for your version of python from the release and install using:
```
pip install ./phase-X.X.X-cpXXX-cpXXX-linux_x86_64.whl
```

## Documentation
For detailed documentation see [here](https://i3drobotics.github.io/pyphase/)


