Ya hemos visto en artículos anteriores como instalar Ubuntu 12.04 y como instalar OpenCV en nuestra Beaglebone Black. Ahora para avanzar en el software para Computer Vision instalamos SimpleCV.
De acuerdo a las instrucciones oficiales que se encuentran en este link , estos son los comandos,
sudo apt-get install ipython python-opencv python-scipy python-numpy python-pygame python-setuptools python-pip sudo pip install https://github.com/sightmachine/SimpleCV/zipball/master
Posteriormente actualizamos ipython
sudo pip install -U ipython
Sin embargo al ejecutar
simplecv
nos aparece un error, este error ya estaba documentado antes en este link
y se soluciona con el siguiente comando
sudo pip install svgwrite
Entonces, la secuencia completa de comandos es la siguiente
sudo apt-get install ipython python-opencv python-scipy python-numpy python-pygame python-setuptools python-pip sudo pip install https://github.com/sightmachine/SimpleCV/zipball/master sudo pip install -U ipython sudo pip install svgwrite
Y con esto si ya tenemos SimpleCV para nuestra beaglebone Black.
Mas información sobre SimpleCv en su web oficial