OpenCV 2.3 released

Link

I did not check with OpenCV for a few months. Today I noticed that a new version of OpenCV is released. This wonderful vision library is getting better and better in every release. Last time, I felt poorly about the documentation on OpenCV. I found most of its documents are just the comments provided during writing the codes which somebody has extracted using tools like Doxygen etc. Now in 2.3, the documentation page has been changed thoroughly. It has been divided into three major parts: API reference, User Guide and Tutorials. The tutorials part is open for anybody to contribute on a specific topic. I am hoping to write something here soon.

Share on Twitter

A Latex template for preparing thesis in the University of Memphis

As a student of the University of Memphis I was always bothered by the fact that the graduate school does not give any latex template. Not only that, they always assume everybody will use Microsoft Word. All the instructions in the thesis/dissertation preparation and submission process are written with the assumption of Word usage. It looks very pathetic to me. Continue reading

Share on Twitter

OpenCV bitpieces

Suppose DoIt is a function that takes a cv::Mat as argument and suppose AMat is a cv::Mat. In openCV 2.1.0


//You cannot do this
DoIt(AMat*50.0);
//Or this
DoIt((cv::Mat)AMat*50.0);

//You have to do either this:
cv:Mat temp = AMat*50;
DoIt(temp);
//Or this
DoIt((cv::Mat)(AMat*50.0));
//Or this
DoIt(cv::Mat(AMat*50.0));
Share on Twitter