Metadata-Version: 2.1
Name: tsbb15-labs
Version: 0.0.8
Summary: Convenience functions for the tsbb15 labs.
Home-page: https://github.com/Parskatt/tsbb15_labs
Author: Johan Edstedt
Author-email: johan.edstedt@liu.se
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pillow
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: opencv-python

# Support functions for the labs in the TSBB15 course
## Installation
### Setup
Make sure you have python installed.
Additionally we recommend using a package manager such as [miniconda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html).

### Easiest installation
Run the command:
```terminal
pip install tsbb15-labs
```
Note that you do NOT need to clone this repo for this install.
### Install
If you want to change any code (bugfixes etc). You may want to install the package in editable mode, so that changes can be easily observed.
This can be done with the following commands:
```terminal
git clone git@github.com:Parskatt/tsbb15_labs.git
cd tsbb15_labs
pip install -e .
```

## Some known issues
### tiff errors
If you are using conda on windows you might get an error:
> tempfile.tif: Cannot read TIFF header.

If thats the case, uninstall libtiff (conda uninstall libtiff)
and reinstall it. (this will also require you to reinstall pillow)


