Speaking of this, what is the fastest way to obtain an "average" color value for a texture? In my current GLSL fragment shader I sample 9 points of the texture image and get the average value, this is far from perfect since for every pixel of the image I have to sample 9 points, that are always in the same positions

So I thought I could sample just 1 point per pixel, but on a mipmap level that is high enough so that this single pixel is the average of the texture color. This means though that I need to go to a mipmap level of around 10 or 11 to be sure that even large images get averaged properly (a 1024x1024 texture with mipmap 10 is 1x1 pixel).
I'm sure that's a better way to do this, maybe with a vertex shader, but I'll do some tests to see which of those method is the fastest.