Latest entries
Never delete temporary files during working with OpenOffice
... or else you won't be able to save your file. Even if you chose a different filename! A possible workaround is to create a new file and copy & paste your content.
Last Updated (Tuesday, 20 July 2010 08:44)
How to avoid memory leaks in OpenCVToday I fixed a memory bug in one of my programs. Albeit I always release memory cvReleaseImage after allocating it with cvCreateImage, memory consumption was enormous. Commenting out some of the source code quickly showed the responsible code fragments. Using cvCreateImage and afterwards cvCloneImage made it impossible to release the initially allocated memory. Therefore after some iterations (depending on your main memory) this program will crash. To fix this issue simply replace the cvCloneImage with cvCopy. Bad code: Good code: Last Updated (Thursday, 08 July 2010 21:54) Howtos and tutorials about building a classifier based on Haar-like featuresI want to share my collection of links of how to build a classifier based on haar-like feature using OpenCV. If you know another (open source) implementation please leave me a message! An example where a bowl is detected A wiki describing how to build a haar classifier for robotic vision How to fix cvboost.cpp if you encounter a "bad flag" error during haar training Another example of how to detect a bowl
Last Updated (Thursday, 08 April 2010 14:42) IPod (Nano 5g) not recognized by Windows XP SP3I spent the last days restarting, updating and googling to get my IPod Nano (5G) working on Windows XP (+ SP3). It was not recognized by Windows nor by iTunes. To get it work properly I had to
Finally Windows XP found the IPod, reformated it with vfat32 and from that moment on it was correctly recognized everytime it was connected to the computer. Restoring Linux boot record after Windows installationMy Easy Peasy Linux was lost after installing Windows 7. Windows couldn't setup (by default) a boot manager so I had to recover my boot record. My Linux knowledge is quite good I thought but after a while I recognized that I missed a development in the last years - udev. I used a mini linux-distribution stored on my USB stick (my EeePC doesn't have a CD drive) to boot into Linux, mounted the installed Easy Peasy and restored the boot record using grub. Now I have a handy menu where I can choose between Windows 7 and Easy Peasy. Steps to recover a lost Linux system after installing Windows: Assuming that Linux is installed on /dev/sda1, Windows on /dev/sda3. Lines 3 and 4 are essential, without them Grub cannot be installed on a system using udev. [1] title win7 Please check the menu.lst somewhere in the upper part of the file is an example configuration for Windows! Further (0,1) might not be the correct partition, replace it with your partition where Windows has been installed. [2] Last Updated (Wednesday, 11 November 2009 20:10) |


