-
Hey I'm José María Ruiz, a software developer and entrepreneur who lives (by now) in Spain. I owns a company and works for Foreign Exchange Solutions, a London based FOREX startup Techlightenment.
You contact me in josemariaruiz(at)gmail.com.
Blogroll
Tags
-
Recent Tweets
There are no recent tweets.
-
Recent Posts
Archives
Categories
Meta
OpenCV tips and tricks
- Install:
-
sudo apt-get install libavformat-dev libavcodec-dev libavfilter-dev libswscale-dev
- Download an compile OpenCV, it’s better and it takes only a few minutes to compile.
- OpenCV changed the API, all these examples that import “highgui” and “cv2.cv” and so are wrong! Now you have to use:
import cv
- Problem capturing keys? waitKey() doesn’t return strings or chars! instead it returns a that number you need to mask with 255:
my_key = chr(cv.waitKey(10) & 255)
- Cannot capture from your camera?
http://stackoverflow.com/questions/4749498/cant-access-webcam-with-opencv
- Install libv4l-dev before compiling in Ubuntu or your camera will not capture anything (empty window).
- «if you only have one camera, or you don’t care which camera is the correct one, then use “-1″ as the index. Ie for your example capture = cv.CaptureFromCAM(-1).»
http://stackoverflow.com/questions/2601194/displaying-webcam-feed-using-opencv-and-python
- Use cv.CV_FOURCC() for getting the code for video codecs (en c++ it’s a macro).
http://stackoverflow.com/questions/5426637/writing-video-with-opencv-python-mac
- Load the classifiers (for face detection for example) using
classifier = cv.Load("/full/path/to/opencv/share/classifier.xml")
Posted in Uncategorized
Leave a comment
InfoQ: Jim McCarthy and 11 Commitments For a Shared Vision
InfoQ: Jim McCarthy and 11 Commitments For a Shared Vision.
In this talk filmed during Agile 2008, Jim McCarthy talks about 11 commitments team members should adhere to if they want to achieve a state of shared vision. Such a state empowers a team to reach their full potential and ultimately attain greatness.
Posted in Uncategorized
Leave a comment
Links of 2012-02-15
Posted in Uncategorized
Leave a comment
Links of 2012-04-12
Posted in Uncategorized
Leave a comment
Links for 2012-02-08
Posted in Uncategorized
Leave a comment
Links for 2012-02-06
Posted in Uncategorized
Leave a comment
Links of 2012-02-04
- http://maps.met.police.uk/index.php
- http://andrewgelman.com/2012/02/philosophy-of-bayesian-statistics-my-reactions-to-cox-and-mayo/
- http://online.wsj.com/article/SB10001424052970204740904577196931457473816.html?mod=WSJ_hp_mostpop_read
- http://pandodaily.com/2012/02/04/silicon-valleys-engineering-salaries-are-finally-getting-fair-thank-facebook/
- http://laforge.gnumonks.org/weblog/2011/06/11/
- http://hellobubs.com/post/17052863136/i-havent-been-drunk-in-3-years-and-ive-been
- http://atimes.com/atimes/Global_Economy/NA31Dj01.html
Posted in Uncategorized
Leave a comment