In the TAA implementation there is some code that ignores the history color at certain times. Like when the old position was off screen or behind an object.
Here you can see it visualized when I rotate quite fast: Imgsli & Imgsli
Notice where the mask is applied only the current frame is used which causes aliased pixels.
By blurring the masked area slightly I get a result that is more in line with the rest of the screen: - Imgsli - Imgsli
looks good and I really appreciate the effort
however I wonder why not go the opposite: sharpen everything else instead of blurring the affected area. your previous efforts are about sharpening which were great in a static camera but didn’t hook into the temporal reprojection stuff, and for me the biggest issue at this point with TAA is how small camera/object movements make things blurry compared to a static camera/object
We were using MSAA to run away from the blurriness of TAA because our game uses small details and objects on screen. But when we couldn’t use some of the more advanced skin/hair and other shaders in MSAA we have now switched to experimenting with TAA. Still trying to get an acceptable sharp consistent look… It is frustrating sometimes not to be able to have the best of both worlds in this day and age, especially something related to AA.
If you had told me that AA is going to be the single biggest issue to worry about from a visual standpoint a few years back, I would not have believed you.
I’ve seen your other work, but I never got around testing it yet, I hope it would work well with fast animated objects without causing artifacts, any hints will be appreciated.
It is a noisy (aliased) area with flickering pixels. Have to be smoothed. TAA works best with motion blur applied, but if you turn it off, you will have to take care the artifacts TAA left behind.
The effect this fixes only happens when you move the camera rather fast. So the blur is not an issue.
Without this you can see something that looks like ghosting, but is in reality the area after the character having no TAA applied.
It’s a small fix for a small part of the TAA.
PS: The code isn’t quite done. I have a slightly better version at home.
for me motion blur usually makes TAA worse but I haven’t tested this recently (and I know TAA improved a bit in 4.19).
still the point is that the aliased pixels are already sharp on their own right, and despite them being noisy and aliased for me it’s not so bad because it’s only for pixels that are in fast motion so its harder to spot. for me the issue is again the blurry pixels that are left behind by TAA on not-so-fast motions
Hi Hallotore, I’m not sure I understand from what I can tell visually the blur+Sharpness looks blurrier than the default one, this is prominent on the text? How is it better?
It’s looks blurrier because some of the scene is aliased in the default one. Zoom in and look at the branch to the left of the characters head.
The overall image is a bit blurry because the camera is moving really fast.
The above code you applied is fixing the aliased for taa during motion what did you apply for the sharpness? Do you have a recommendation or step by step guide that may come with a scene perhaps. Any other hints as how to make the image even sharper? Maybe by applying a custom subtle post effect?
Hi @hallatore , I hope you are well and can answer my question, integrate the code but when I start the ue4 I get a lot of yellow stripes and other colors with the blur ghost, I wonder if you can do a tutorial with images or in a video to apply that code, it’s important to me, thanks
Thanks! Now that I’ve gotten to test this in practice, it’s exactly what I hoped, the ghosting of my character/other objects moving quickly is practically gone and no longer visible!