i cant think A blog belong to Mohammad Azwan bin Ali. Most of his writings are about his real life story, ideas, thoughts, moderate political views, computer, programming, tips & tricks, particularly in Linux…. and of course it includes some random unspecified crappy stuffs too! Don't forget to check Movies and Junkyard pages out!
note: most of entries is not suitable for faint hearted person or anybody with iq below 100.

Posts Tagged ‘opencv’

install cvblob with opencv in ubuntu

cvblob is a great blob library for OpenCV. install dependencies if you’re using version opencv 1.0 from repository sudo apt-get install cmake libcv1 libcv-dev libcvaux-dev libcvaux1 if you’re using version opencv 2.0 from gijzelaar’s ppa (read my previous post) run this instead sudo apt-get install cmake libcv4 libcv-dev libcvaux-dev libcvaux4 now, get the source file [...]

opencv 2.0 ppa for ubuntu

for those who want to use OpenCV version 2.0 for their project in ubuntu can use this ppa to update your opencv library. it support ubuntu karmic (9.10) too. add this line to your /etc/apt/source.list deb http://ppa.launchpad.net/gijzelaar/opencv2-karmic/ubuntu karmic main sudo apt-key adv –keyserver keyserver.ubuntu.com \ –recv-keys CAFC44EE7F39098CE6EC229CCA70E6A9087475A0 sudo apt-get && sudo apt-get dist-upgrade that’s all, [...]

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 [...]