Rent a bike in Taipei

Renting a bike in Taipei is pretty east, yet I could not find any helpful information in the internet. Taiwanese people are passionate about cycling and I am sure that it is an emerging sport and tourist attraction in Taiwan. Therefore I wanted to try it myself and explore the country by bicycle. Giant is… Continue reading Rent a bike in Taipei

Simple OpenCV video input/output sample

This short piece of code below captures a frame from a web cam and shows it in a window. Some simple transformations can be applied. #include #include int main(void) { //we assume, that there is only one camera CvCapture* capture= cvCaptureFromCAM(-1); IplImage* img; int loop; while(loop++width; int height = img->height; int nchannels = img->nChannels; int… Continue reading Simple OpenCV video input/output sample

Set URL of Tomcat Webapplication to ROOT in Eclipse

When you create a Dynamic Web Application in Eclipse and run it on Tomcat, the Website will be available trought http://localhost:8080/[PROJECT_NAME]. To “move” the application in the root (making it accessible on http://localhost:8080), go into the project’s properties, go to “Web Project Settings” and just enter “/” in the Context Root textbox. Done.