---
title: 'CloseUpAvatar: High-Fidelity 3D Avatars'
url: https://www.emergentmind.com/topics/closeupavatar
type: topic
---

# CloseUpAvatar: High-Fidelity 3D Avatars

A CloseUpAvatar represents one of the most advanced paradigms for photorealistic, animatable, and high-fidelity 3D human avatars, emphasizing robust rendering quality for both full-body and head close-up views—even under challenging camera motions and extreme zoom. This concept is characterized by novel hybrid avatar parametrizations, efficient multi-scale texture mechanisms, and specialized neural architectures that collectively address the technical constraints of real-time performance, high-detail preservation, and animation-readiness expected by contemporary research and applications [2512.03593].

## 1. Parametric Representation and Multi-Scale Texture Architecture

CloseUpAvatar encodes a human avatar as a set of $N$ textured planes ("surfels") rather than traditional meshes or dense volumetric grids. Each surfel $i$ carries:

- Position $\mu_i \in \mathbb{R}^3$
- 2D spatial scale $s_i \in \mathbb{R}^2$
- Orientation $r_i$ as a unit quaternion
- Per-surfel 4×3 view-dependent SH coefficients $\text{SH}_i$ for appearance
- Two aligned, learnable RGBA textures per surfel:
    - Coarse (low-frequency) texture $\text{MST}^\mathcal{L}_i \in \mathbb{R}^{4\times 16\times 16}$
    - Fine (high-frequency) texture $\text{MST}^\mathcal{H}_i \in \mathbb{R}^{4\times 32\times 32}$

During rendering, both coarse and fine textures are sampled at the local surfel UV coordinate $(u,v)$, and the mixture weight for high-frequency detail is determined by the surfel’s screen-space size:
\[
\omega_{i} = \mathrm{clamp}\bigg(\frac{r_i}{S_H},\,0,\,1\bigg) \quad\quad S_H=32
\]
\[
T_i(u,v) = T_i^\mathcal{L}(u,v) + \omega_i T_i^\mathcal{H}(u,v)
\]
This adaptive texture blending guarantees that high-frequency details—crucial for close-ups—are only synthesized when the camera is sufficiently close, reducing computation and avoiding aliasing or excessive blur at distance [2512.03593].

## 2. Pose and Animation Rigging

All surfels are initialized from an SMPL-X mesh and oriented along local surface normals. To support articulate animation under arbitrary human motion, surfels are skinned to the body using standard Linear Blend Skinning (LBS). This permits real-time deformation in response to sequence or motion-capture (MoCap) driving, with surfel positions and orientations dynamically updated to reflect joint rotations and pose parameters [2512.03593].

This paradigm preserves animatability and allows for seamless integration with industry-standard motion processing pipelines. Unlike earlier avatar systems that lacked skinnability or required very high primitive counts, CloseUpAvatar’s surfel-count remains manageable (≈20K), enabling real-time animation and rendering at FPS rates far exceeding previous mesh- or Gaussian-based avatars.

## 3. Training Objectives, Losses, and Geometry Regularization

The training regime combines pixel-based, perceptual, and structural constraints:
\[
\mathcal{L} =
  \mathcal{L}_\text{pixel}
+ \lambda_{\text{ms\_ssim}}\mathcal{L}_\text{ms\_ssim}
+ \lambda_{\text{lpips}}\mathcal{L}_\text{lpips}
+ \mathcal{L}_\text{reg}
\]
where:
- $\mathcal{L}_\text{pixel}$: $L_1$ (early) and MSE (late) on rendered vs. groundtruth pixels
- $\mathcal{L}_\text{ms\_ssim}$: Multi-scale Structural Similarity Index (SSIM) loss
- $\mathcal{L}_\text{lpips}$: Learned Perceptual Image Patch Similarity
- $\mathcal{L}_\text{reg}$: Geometry priors (Laplacian smoothing, scale regularization, normal/depth consistency).

Regulation of neighboring surfel offsets and enforcement of physically plausible surfel scales preclude geometric artifacts and irregular deformation. Hyperparameters are set for optimal convergence and balance between photometric accuracy and surface regularity ($\lambda_\text{ms\_ssim}=0.2$, $\lambda_\text{lpips}=0.1$, etc.) [2512.03593].

## 4. Rendering Pipeline and Real-Time Performance

Each frame involves:

1. Skinned transformation of canonical surfel positions/orientations via LBS.
2. Intersecting rays with surfels using efficient CUDA-based ray-splat rasterization.
3. Sampling and alpha-blending of low- and high-frequency textures per surfel hit.
4. Depth-based compositing in front-to-back order.

Only ≈20K surfels are needed for comprehensive full-body and close-up coverage, achieving ≈244 FPS for close-up and ≈350 FPS when zoomed-out on RTX 4090-class GPUs—outperforming Gaussian-based methods both in throughput and fine-detailed preservation [2512.03593].

## 5. Comparative Evaluation and Quantitative Results

CloseUpAvatar demonstrates superior or competitive image quality (quantified by PSNR, SSIM, LPIPS, FID) and higher inference speed relative to mesh-based, animatable Gaussian, and prior hybrid avatars. On ActorsHQ, CloseUpAvatar achieves, for zoom-out conditions, PSNR = 36.43, SSIM = 0.990, LPIPS = 0.055, FID = 22.1, and 350 FPS; and for zoom-in, PSNR = 27.69, SSIM = 0.735, LPIPS = 0.223, FID = 38.5, and 244 FPS. Blurring and artifacting that degrade high-frequency facial/body features in Gaussian-only representations (particularly under close-up) are mitigated by the adaptive multi-scale surfel texturing strategy [2512.03593].

| Method                      | PSNR (in) | SSIM (in) | LPIPS (in) | FID (in) | FPS (in) | PSNR (out) | SSIM (out) | LPIPS (out) | FID (out) | FPS (out) |
|-----------------------------|-----------|-----------|------------|----------|----------|------------|------------|-------------|-----------|-----------|
| MeshAvatar                  | 24.16     | 0.716     | 0.319      | 66.7     | 11       | 33.10      | 0.982      | 0.087       | 36.1      | 27        |
| AnimatableGaussians         | 28.53     | 0.737     | 0.311      | 49.5     | 16       | 33.90      | 0.987      | 0.058       | 23.7      | 15        |
| Mmlphuman                   | 27.64     | 0.730     | 0.300      | 57.2     | 279      | 33.62      | 0.986      | 0.068       | 31.2      | 232       |
| CloseUpAvatar (Ours)        | 27.69     | 0.735     | 0.223      | 38.5     | 244      | 36.43      | 0.990      | 0.055       | 22.1      | 350       |

*In=zoom-in (close-up), Out=zoom-out.* [2512.03593]

## 6. Limitations and Prospective Extensions

Current CloseUpAvatar implementations encounter challenges when representing very small-scale, non-rigid geometrical detail (e.g., finger tips, facial micro-expressions) due to surfel coarseness in those anatomical zones. High-frequency geometric displacements (wrinkles, nails) are not explicitly modeled and are delegated to texture channels. Notable avenues for advancement include:

- Introducing hybrid primitives—adaptive surfel sizing at high-curvature or detail-critical regions (hands, face)
- Integrating learned micro-displacement (fine geometry) maps atop the surfel framework
- Joint lighting/relighting optimization for dynamic illumination scenarios and physically based rendering
- Explicit modeling of additional modalities (specular, roughness) for relightable avatars

Further research directions envisage extending these representations with fine-grained adaptive priors and multi-modal texture/geometry learning [2512.03593].

## 7. Relationship to Prior Art and Position in the Avatar Landscape

CloseUpAvatar diverges from mesh-only [2108.02931], Gaussian-only [2507.10542, 2511.19189], implicit neural field [2306.09864], and triplane-based [2503.19906] avatar representations by leveraging surfel "billboards" with multi-scale, learnable textures that are selectively blended. This formulation achieves a crucial balance between real-time execution, animation-readiness, and preservation of photorealistic close-up details for applications requiring extreme camera proximity.

Other systems—such as ScaffoldAvatar [2507.10542], AvatarBrush [2511.19189], and FaceCraft4D [2504.15179]—provide orthogonal advances in head-level fidelity, local editability, and 4D dynamics, but do not provide the same full-body, camera-distance-adaptive rendering pipeline coupled to articulated animation at comparable scalability and frame rates.

The CloseUpAvatar architectural paradigm is positioned as a foundational building block for next-generation, highly realistic, and performance-optimized digital human representations [2512.03593].

Source: https://www.emergentmind.com/topics/closeupavatar