This project is tested to work in Linux, and a Makefile is included. One note when you try to compile in optimized mode. There's a problem that I think might be a bug in gcc, I don't know. But there are linking errors. The solution is: 1. compile the image.cpp class without -O2 2. Type make. This should work. Also compiling the whole project unoptimized, or in debug mode, works too. If anyone fixes this problem, email me. --------------------------- Justin Lundberg, a student from the 06wi Vision course mentioned the following: I just retested this on one of the Linux boxes in CSE 002 and came across the following issues. 1- g++ is at /usr/bin/g++ not /uns/bin/g++ 2- image.cpp causes error when compiled with the option -O2 workaround: make rm image.o g++ -w -I/uns/include -c image.cpp make -or just create an extra varible with out the -O2 option for use with image.cpp -these workarounds subjectively seem slower then the optimized code from visual studio, but that is most likely an illusion.