tldr: The default anti-aliasing setting samples significantly outside one pixel which reduces the effective resolution. For a maximum effective resolution use the "box" setting which acts as an incredibly high multisampling anti-aliasing filter.
From my own experiments and the information provided in the discussion from the patch https://developer.blender.org/D1453, the sampling with the Blackman-Harris-Filter happens in a circular pattern around the center of the pixel, with the density following the Blackman-Harris-Distribution.
In the default case, with a "filter width" of 1.5 pixels, this means that up to 5 pixels in a horizontal line contribute to the central (third) pixel. Not only the nearest neighbor but also the next nearest neighbor pixels. This leads to a significant "blurring" of the image. Only "filter width" values below ~.65 pixels guarantee sampling stays within the original pixel. This however leaves out the corners of the pixel.
Chosing an "optimal" default and distribution is not possible as per wikipedia:
The goal of an anti-aliasing filter is to greatly reduce frequencies above a certain limit, known as the Nyquist frequency, so that the signal will be accurately represented by its samples, or nearly so, in accordance with the sampling theorem; there are many different choices of detailed algorithm, with different filter transfer functions. Current knowledge of human visual perception is not sufficient, in general, to say what approach will look best.
However what originally motivated me to post this question, was the blurring when working with pixel accurate sprites. With the default anti-aliasing setting it felt like detail got lost in the renders. However turning off or reducing the width of the filter too far killed the anti aliasing even inside the pixels.
When using the "box" anti-aliasing filter and adding a Gaussian blur in the compositor, I can no longer distinguish the results from the Blackman-Harris filter, but I have the freedom to adapt the sharpness in after the render.
and the only way to get high quality (super-sampling) anti-aliasing is to manually render at increased resolution and downsample the image later. Is there a way around this? So my understanding of what you want it to get a really high quality render of an image? One free of less than stellar poorly done anti aliasing and to my knowledge I'm afraid there is no work around from what you have described I'm afraid. You're just going to have to have a render the scene at a large resolution and then downsample it later as you described. Also it wouldn't hurt to bump of the samples a ton but of cou
– EmperiumIce Jun 07 '19 at 07:15filter_func_blackman_harrisandfilter_tableare implemented in https://developer.blender.org/diffusion/B/browse/master/intern/cycles/render/film.cpp and cdf functions in https://developer.blender.org/diffusion/B/browse/master/intern/cycles/util/util_math_cdf.h https://developer.blender.org/diffusion/B/browse/master/intern/cycles/util/util_math_cdf.cpp – Robert Gützkow Jul 23 '19 at 22:05