This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""project_pixel_to_floor.py project an image pixel into the ground plane""" | |
__author__ = "Eric Cox" | |
__maintainer__ = "Eric Cox" | |
__email__ = "[email protected]" | |
import numpy as np | |
from numpy.linalg import inv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# install dependencies | |
apt-get update | |
apt-get install -y build-essential | |
apt-get install -y cmake | |
apt-get install -y libgtk2.0-dev | |
apt-get install -y pkg-config | |
apt-get install -y python-numpy python-dev | |
apt-get install -y libavcodec-dev libavformat-dev libswscale-dev | |
apt-get install -y libjpeg-dev libpng12-dev libtiff5-dev libjasper-dev |