Detailed Reading
2DGS changes the primitive itself. Vanilla 3DGS uses ellipsoids, which are excellent for radiance but can blur across surfaces or represent thickness that does not exist. 2DGS instead represents surfaces with oriented Gaussian disks embedded in 3D space.
The rendering algorithm computes ray-disk intersections and splats the resulting contributions with perspective correctness. The training objective adds depth distortion and normal consistency terms, pushing the model toward surfaces that agree across views rather than volumetric blobs that merely match colors.
The paper is a major geometry correction to the original 3DGS idea. It says that if the goal is accurate surfaces, the representation should encode surfaces directly. This is why 2DGS belongs beside SuGaR and GOF in any serious reading list.
2D Gaussian Splatting changes the primitive to better match surfaces. Standard 3D Gaussians are ellipsoids with volume, which can look good but creates ambiguous geometry. This paper represents local surface elements as oriented 2D Gaussian disks, making the optimized primitives more naturally surface-aligned.
The renderer still splats projected Gaussians, but the mathematical model is tied to a disk-like support rather than a full volumetric ellipsoid. That makes normals and depth behavior more meaningful for surface reconstruction. It also reduces the tendency for thick clouds to explain a thin physical surface.
The algorithmic point to watch is how geometry and appearance supervision are balanced. The model needs enough flexibility to match images, but enough constraint to keep disks on a surface. Losses and regularizers are designed so the representation can be converted into accurate geometry rather than only render nice images.
The paper is important for anyone who wants meshes, collision, measurement, or CAD-like downstream use. It may be less forgiving than volumetric 3DGS in fuzzy, transparent, or poorly observed areas, but it advances the idea that splatting can be a geometry representation, not just a radiance-field renderer.