Would u mind elaborating on the division part of Average? What exactly do u mean by linear scaling of data?
The operation at the core of ImageIntegration using Average with say, R, G and B masters is to calculate (r+g+b)/3 for each pixel where r, g and b are the values of the corresponding pixel in the R, G and B masters. So, it is summing the pixels and dividing by the number of images.
By linear scaling, I mean that there's a simple multiplication going on (multiply by 1/3 in this case.) When you're working with linear data you can ignore this scaling. A sum (r+g+b) or an average (r+g+b)/3 will look the same when stretched.
Note: for the sake of simplicity I'm ignoring normalization, noise weighting, rejection, arithmetic overflow, etc.
Cheers,
Rick.