How to use Anti-Aliasing in 360/ 180 Degree Video in Unreal Engine: Path-Tracing

A short guide for how to get the best quality anti-aliasing output for your 360 and 180 Degree path tracing in Unreal Engine
Written by Off World Live
Updated 3 weeks ago
This article is about using path tracing. If you are using deferred rendering please follow this article as the process is different.
To enable Path-Tracing in the OWL 360 Render Pass please tick the box at the top of the Settings:

Anti Aliasing cleans up edges and reflections that would otherwise look unnaturally crisp or jagged. It works by taking samples from parts of the pixel and  using those samples to smooth out colors (either within a frame or between multiple frames) so that the elements in your scene have smoother edges.

There are two types of samples used to control Anti-Aliasing:

  • Temporal Samples: These are samples taken across multiple frames which helps smooth out moving objects or effects caused by moving cameras.
  • Spatial Samples: These are samples taken around the area of a pixel to determine the best average of colors with the goal of smoothing transitions between the colors to stop jagged lines.

How does Path Tracing use Temporal and Spatial Samples?

Path-tracing is different to deferred rendering:

  • It turns off default anti-aliasing methods like TAA (Temporal Anti-Aliasing) and TSR (Temporal Super Resolution).
  • The blending of Temporal Samples happens on the CPU.
  • The blending of Spatial Samples happens on the GPU.
  • Denoising happens on the last spatial sample where temporal blends the denoised frames.

Therefore, when using Path-tracing:

  1. You need to use both Temporal and Spatial samples.
  2. You need to add a LOT more samples than when using Deferred Rendering.

What's the Most Efficient Way to Add Samples in Path-Tracing?

Epic suggests:

  1. Gradually increase the number of Spatial Samples until you get an acceptable anti-aliased image.
  2. Gradually increase the number of Temporal Samples until you get clean motion blur and/ or less flickering in denoising.
  3. Divide the number of Spatial Samples by the number of Temporal Samples to get your final number.
  4. For example, if you need 100 Spatial Samples and 4 Temporal Samples then your final settings should be 25 Spatial (100/4) and 4 Temporal.
N.B. For fast-moving scenes you will need a larger amount of Temporal Samples but increasing temporal samples above 8 will have a big effect on your render time.

Anti-Aliasing Samples isn't the Only Setting you Need to Care About!

Unless you have a specific requirement, adding more anti-aliasing samples will just increase your render time for nothing! 
As Epic says: "This is the most common mistake and will do nothing other than needlessly bloat your render times."

In particular, Epic notes that in the following areas it's better to change other settings such as:

  1. Shadows: "If you see chattering in the shadows consider raising the Samples Per Pixel on the lights. If you have any softness to your shadow at all you’ll want to consider raising it above 1. Especially for Area Lights."
  2. Reflections: "If you see noise in the reflections then have a look at the settings in the Post Process Volume... They all have their own Samples/Quality.
  3. Refractions, Global Illumination, Ambient Occlusion: "If you see noise in your refractions, Global Illumination, or Ambient Occlusion, that needs to be addressed in the Post Process Volume, not Movie Render Queue."
In summary, from Epic:
"Leaning on Temporal Samples to clean out noise in the rendered frame will work but it will cost you heavily in render time.
 In many cases, you can go after the Raytrace/ Lumen Samples per pixel in the respective problem area."

Review Console Variables (CVars): They will be Affecting your Renders!

Epic says "A lot of people don’t realize that everything in the “Game Overrides” section in MRQ is having an effect on your render even if you don’t have it active in the GUI."

Epic recommends:

  1. Remove all Console Variable overrides unless you have a specific reason you are including them.
  2. If you see any large low-frequency noise, that's from Denoisers. You have to find the right Denoiser (Ambient Occlusion, Global Illumination, Reflections, etc.) and shut it off.
  3. If you disable all the options in the Game Overrides section, aside from Flush Grass Streaming, that will get you as close as possible to what you are seeing in the Editor Viewport (assuming you don’t have any CVar overrides in MRQ).
  4. The geometry LOD settings here will NOT override anything Nanite. They are only for non-nanite actors.
Did this answer your question?