KitePicProc
Converting a kite photograph in the sky to its flat artwork: Python (virtual env python3.5) + OpenCV (numpy, matplotlib) code
https://codewords.recurse.com/issues/six/image-processing-101
Install virtual env, python3.5 (not python2.7), openCV. https://github.com/piratefsh/image-processing-101
First I did followings, but they did not work:
$ pip install docopt
Problem happend. According to pypa/virtualenv#788
But maybe it was not a fix.
$ conda install -c anaconda virtualenv=15.1.0
$ git clone https://github.com/piratefsh/image-processing-101.git
$ cd image-processing-101/
$ pip install -r requirements.txt
$ conda create -n py3.5 python=3.5 anaconda
$ source /anaconda2/bin/activate py3.5
$ pip install opencv_python
$ source enable-py3_5.sh
or
$ source /anaconda2/bin/activate py3.5
$ trans.py daruma.jpg
Note) transPLI.py does not work yet.