Regular meetings occured on Saturdays 12:00-18:00 from 8. September until 2. December. Goal being to participate on the Robotex with two robots.
Using video files from https://nextcloud.k-space.ee/s/4O8meO1Pql5A7zX
Get following code example running: https://pad.k-space.ee/p/imagerec
Need to get registered by 15. October.
Currently interested folks include: Fred, Marek, Endel, Giorgi, Hiromasa, Ruxin, Mohanad
Python 3.5 brings support for async programming in Python making it possible to use async web programming.
These instructions should work on Ubuntu 16.04 and Debian Stretch, in older versions the OpenCV build will pick up Python 3.4 and this is going to result in mess.
Install Python:
apt-get install cmake wget python3.5-dev build-essential unzip \
libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev \
libavcodec-dev libavformat-dev libswscale-dev libv4l-dev \
libgtk-3-dev python3-setuptools libgstreamer1.0-dev \
libgstreamer-plugins-base1.0-dev libgstreamer-plugins-good1.0-dev libgstreamer-plugins-bad1.0-dev
Install pip:
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
Install numpy:
CFLAGS="-pipe -O3 -march=native" pip3 install --upgrade numpy
Install OpenCV:
wget https://github.com/Itseez/opencv/archive/3.4.3.zip
unzip 3.4.3.zip
cd opencv-3.4.3
mkdir build
cd build
CFLAGS="-pipe -O3 -march=native" cmake -D INSTALL_PYTHON_EXAMPLES=ON -D WITH_XIMEA=BOOL:ON ..
Observe the output of the last command and make sure CMake detected Python 3.5. Finally build OpenCV and install it:
make -j32
sudo make install
TODO: outdated