After reading this blog, I want to try writing a similar program myself.
One of the subtasks is to have a source set of polygons, and use these polygons to generate the bitmap that is going to be compared with the target image.
In .NET 2005 the obvious method is to use GDI+. Simply create a bitmap, get a Graphics object that interfaces to the bitmap, and call a number of the Graphics objects rendering functions.
Apparently, this doesn't utilise hardware accelaration. This is why WPF doesn't use GDI+.
Is there an API in .NET to generate a bitmap utilising more advanced rendering technologies?