opencv in ubuntu
for those who want to do some image processing in ubuntu but strunggling to compile and install it here's a easiest way to do it
sudo apt-get install opencv-doc python-opencv libcv1 libcvaux1 libhighgui1 \
libcvaux-dev libcv-dev libhighgui-dev
to see all example from opencv-doc
cp -r /usr/share/doc/opencv-doc/examples cv-examples && cd cv-examples
there's will be c and python example, to compile all c source use sh build_all.sh
No Comments Yet