Views
No views yet
Sharp Monocular View Synthesis in Less Than a Second by Lars Mescheder, Wei Dong, Shiwei Li, Xuyang Bai, Marcel Santos, Peiyun Hu, Bruno Lecouat, Mingmin Zhen, Amaël Delaunoy, Tian Fang, Yanghai Tsin, Stephan Richter and Vladlen Koltun.
We present SHARP, an approach to photorealistic view synthesis from a single image. Given a single photograph, SHARP regresses the parameters of a 3D Gaussian representation of the depicted scene. This is done in less than a second on a standard GPU via a single feedforward pass through a neural network. The 3D Gaussian representation produced by SHARP can then be rendered in real time, yielding high-resolution photorealistic images for nearby views. The representation is metric, with absolute scale, supporting metric camera movements.

1# Run inference with FP16 model (faster, smaller)
2python inference_onnx.py -m sharp_fp16.onnx -i test.png -o test.ply -d 0.5-m, --model: Path to ONNX model file-i, --input: Path to input image (PNG, JPEG, etc.)-o, --output: Path for output PLY file-d, --decimate: Decimation ratio 0.0-1.0 (default: 1.0 = keep all)--disparity-factor: Depth scale factor (default: 1.0)--depth-scale: Depth exaggeration factor (default: 1.0)image: A 3-channel RGB image in float32 format with shape (1, 3, H, W).[0, 1] (normalized RGB).1536×1536 (matches training size).disparity_factor: A scalar tensor of shape (1,) representing the ratio focal_length / image_width.1.0 for standard cameras (e.g., typical smartphone or DSLR).| Output | Shape | Description |
|---|---|---|
mean_vectors_3d_positions | (1, N, 3) | 3D positions in Normalized Device Coordinates (NDC) — x, y, z. |
singular_values_scales | (1, N, 3) | Scale parameters along each principal axis (width, height, depth). |
quaternions_rotations | (1, N, 4) | Unit quaternions [w, x, y, z] encoding orientation of each Gaussian. |
colors_rgb_linear | (1, N, 3) | Linear RGB color values in range [0, 1] (no gamma correction). |
opacities_alpha_channel | (1, N) | Opacity (alpha) values per Gaussian, in range [0, 1]. |
N is approximately 1,179,648 for the default model.1# Convert to FP32 ONNX (higher precision)
2python convert_onnx.py -o sharp.onnx --validate
3
4# Convert to FP16 ONNX (faster inference, smaller model)
5python convert_onnx.py -o sharp_fp16.onnx -q fp16 --validate-c, --checkpoint: Path to PyTorch checkpoint (downloads from Apple if not provided)-o, --output: Output ONNX model path-q, --quantize: Quantization type (fp16 for half-precision)--validate: Validate converted model against PyTorch reference--input-image: Path to test image for validation1@inproceedings{Sharp2025:arxiv,
2 title = {Sharp Monocular View Synthesis in Less Than a Second},
3 author = {Lars Mescheder and Wei Dong and Shiwei Li and Xuyang Bai and Marcel Santos and Peiyun Hu and Bruno Lecouat and Mingmin Zhen and Ama\"{e}l Delaunoy and Tian Fang and Yanghai Tsin and Stephan R. Richter and Vladlen Koltun},
4 journal = {arXiv preprint arXiv:2512.10685},
5 year = {2025},
6 url = {https://arxiv.org/abs/2512.10685},
7}