GenRec: Knowing Where to Reconstruct and Where to Generate
Abstract: Generative novel view synthesis from sparse input images is rarely all reconstruction or all generation: pixels visible in some source view have a unique correct value modulated only by view-dependent shading, while pixels in disocclusions or beyond the captured volume admit a distribution of plausible completions. Existing generative novel-view-synthesis methods conflate these regimes under a single uniform loss, blurring the line between geometric fidelity and creative hallucinations even when scene geometry is injected through warped point clouds or projected depth. We introduce GenRec, a multi-view flow matching model that builds the reconstruction--generation split directly into its architecture, supervision, and gradient flow. Guided by an observation mask derived from the source cameras and a monocular depth estimator, a flow matching backbone jointly denoises RGB and scene-coordinate maps across all target views, while a pixel-space refinement stage restores high-frequency detail on observed pixels; the same mask gates supervision so regression signals do not contaminate the generative prior. Across RealEstate10K, DL3DV-10K, and Mip-NeRF~360, in both single-view extrapolation and two-view interpolation, GenRec attains the best reconstruction fidelity in observed regions while also surpassing purely generative baselines on perceptual quality in unobserved ones, showing the effectiveness of our approach.
Paper Prompts
Sign up for free to create and run prompts on this paper.
Top Community Prompts
Explain it Like I'm 14
1. What is this paper about?
This paper introduces GenRec, a computer vision system that creates images of a scene from a camera angle that was not originally photographed.
For example, imagine taking one picture of a room and then asking a computer to show what the room would look like from the side. This task is called novel-view synthesis.
The main idea of GenRec is simple:
- If part of the new view was already visible in the original pictures, the computer should reconstruct it accurately.
- If part of the new view was hidden or never photographed, the computer should generate a believable guess.
The researchers argue that these two jobs are different and should not be treated in exactly the same way.
2. What questions are the researchers asking?
The paper focuses on several main questions:
- Can a computer tell which parts of a new image are supported by real evidence from the original images?
- Can it copy those observed parts more accurately instead of changing them unnecessarily?
- Can it still invent realistic content for areas that were never seen?
- Can one system handle both accurate reconstruction and believable generation?
- Can it do this faster than existing methods?
The central research question is:
Would separating “copy what is known” from “imagine what is unknown” produce better novel-view images?
3. How does GenRec work?
Step 1: Find which pixels were observed
GenRec first examines the original images and estimates the depth of objects. Depth means how far each part of the scene is from the camera.
It then projects the original image information into the desired new camera view. This is similar to shining a flashlight through a 3D model to see where each old pixel would appear from the new viewpoint.
This creates an observation mask:
- White or high-value areas mean that the new pixel has evidence from an original image.
- Black or low-value areas mean that the pixel was not observed and must be predicted.
The mask is not always perfect because the depth estimate can contain mistakes, but it gives the model useful information.
Step 2: Generate the complete image
GenRec uses a generative model called a flow-matching backbone. In everyday terms, this is a neural network that starts with random visual noise and gradually turns it into a complete image.
It does this for:
- The target RGB image, which contains colors and brightness.
- A scene-coordinate map, which records the 3D position of each pixel in the world.
Predicting both the image and its 3D positions helps different target views agree with one another. For example, the same table should not appear in completely different places in two generated views.
The model also looks at:
- The target camera’s position and direction.
- The warped information from the source images.
- The observation mask.
Step 3: Improve the observed regions
The generated image may be realistic but slightly blurry or different from the original evidence. Therefore, GenRec adds a separate reconstruction branch.
This branch works only on pixels marked as observed. It uses the original image details and compares nearby points in 3D. This is like finding the same object or surface in several photographs and carefully matching their colors and textures.
The branch can make small corrections, such as:
- Restoring sharp edges.
- Recovering fine textures.
- Making colors closer to the original image.
- Keeping the same object in the same place across multiple views.
Step 4: Keep the two jobs separate during training
GenRec is trained in two stages:
- The main generative model learns how to create complete, plausible views.
- The reconstruction parts are trained afterward to improve only the areas supported by real observations.
The reconstruction errors are not allowed to change the main generative model in unobserved regions. This is important because forcing an invented region to match one particular answer could make the model less creative or less realistic.
A useful analogy is an art project:
- For parts copied from a photograph, the student is graded on exact accuracy.
- For parts outside the photograph, the student is graded on whether the drawing is believable and fits the scene.
4. What did the experiments show?
The researchers tested GenRec on three datasets:
- RealEstate10K, containing videos of indoor and real-estate scenes.
- DL3DV-10K, containing many 3D video scenes.
- Mip-NeRF 360, containing more varied outdoor and indoor scenes.
They tested two situations:
- Single-view extrapolation: only one source image is provided, and the system must show views farther away.
- Two-view interpolation: two source images are provided, and the system creates views between them.
The results showed that GenRec performed better than the compared methods on the reported image-quality measures.
For example, in the single-view RealEstate10K test:
- GenRec achieved a PSNR of 17.05, compared with 15.24 for the strongest listed baseline.
- In observed areas, GenRec achieved a PSNR of 20.85, compared with 18.13 for that baseline.
- Its FID score was 33.09, lower than the baseline’s 35.68. Lower FID generally means that generated images look more like realistic images.
- GenRec took about 11 seconds per scene, while the strongest baseline took about 1,200 seconds.
The exact numbers are less important than the overall pattern:
- GenRec preserved observed regions more accurately.
- It produced more realistic unobserved regions.
- It was much faster than some competing approaches.
The researchers also performed ablation studies. These studies remove or add parts of a system to see what each part contributes. They found that:
- The image-detail improvements helped the generated images look more realistic.
- The reconstruction branch greatly improved accuracy in observed regions.
- Adding the reconstruction branch did not damage the quality of the invented regions.
5. Why are these results important?
Many earlier systems treat every pixel in a new view as if it must be invented. This can cause problems:
- A wall that was already visible may change color.
- Furniture may move slightly.
- Textures may become blurry.
- Different generated views may disagree about the shape or location of objects.
GenRec avoids this by recognizing that some pixels have a clear, evidence-based answer while others do not.
This makes the system useful for applications such as:
- Virtual and augmented reality, where users may move around a scene.
- Robotics, where a robot needs to understand spaces from only a few images.
- 3D reconstruction, where extra generated views can help build a scene model.
- Virtual tours and games, where unseen areas need to be filled in realistically.
6. Limitations and possible impact
GenRec still has some weaknesses. Its performance depends partly on the quality of the depth estimator. If the depth estimate is wrong, the observation mask may incorrectly label pixels as observed or unobserved. This can lead to poor warping or inaccurate reconstruction.
The model also currently handles only a limited number of views at once because processing both image information and 3D information requires a lot of computer power.
Even with these limitations, the paper presents an important idea: a good vision system should know the difference between remembering and imagining. By copying what the camera truly saw and generating only what it could not see, GenRec can create views that are both more accurate and more realistic.
Knowledge Gaps
Knowledge gaps, limitations, and open questions
- Dependence on monocular depth accuracy: The observation mask, warped RGB, scene coordinates, and nearest-neighbor correspondences all depend on the off-the-shelf monocular depth estimator; the paper does not establish how performance changes under severe depth scale errors, incorrect occlusion ordering, reflective surfaces, thin structures, or dynamic objects.
- Reliability of the binary reconstruction–generation split: The assumption that observed pixels have a near-deterministic correct value is incomplete for disocclusions, view-dependent appearance, transparency, non-Lambertian materials, motion, and imperfect source-to-target correspondences. The paper does not investigate soft uncertainty estimates or ambiguous pixels within nominally observed regions.
- Mask-quality sensitivity: Although depth-robustness studies are mentioned, the main text does not quantify how mask precision, recall, boundary errors, or partial coverage affect reconstruction and hallucination quality. It remains unclear whether incorrect masks cause more harm in observed or unobserved regions.
- Limited evaluation scale and statistical strength: The experiments use only 100 test scenes from RealEstate10K and DL3DV-10K, while all nine Mip-NeRF 360 scenes are used. The paper does not report confidence intervals, variance across scenes, repeated sampling variability, or statistical significance tests.
- Narrow scene and domain coverage: Evaluation focuses primarily on indoor real-estate and bounded photographic scenes, with limited evidence for outdoor urban environments, large-scale landscapes, cluttered spaces, industrial settings, object-centric scenes, or scenes containing people and animals.
- Insufficient testing of difficult visual phenomena: The method is not systematically evaluated on mirrors, glass, transparent objects, glossy materials, repetitive textures, textureless surfaces, thin geometry, severe occlusions, strong lighting changes, or cast shadows.
- Static-scene assumption: The formulation and cross-view correspondence mechanism appear to assume a static world. The paper does not assess performance with moving objects, changing illumination, camera motion blur, rolling-shutter effects, or inconsistent source frames.
- Unclear behavior under inaccurate camera poses: The method is evaluated with posed inputs and target poses, but robustness to calibration errors, noisy extrinsics, inaccurate intrinsics, rolling-shutter cameras, or unknown poses is not studied.
- Restricted input-view regime: Computational constraints limit training to a small number of views, and the experiments mainly use one or two sources. The scalability and performance of GenRec with substantially more source views, irregular camera layouts, wide baselines, or very sparse and redundant views remain unresolved.
- Limited target-view scalability: The backbone jointly processes multiple target views, but the paper does not characterize memory, runtime, or quality as the number of target views increases. It is unclear whether cross-view attention remains practical for long trajectories or dense view sequences.
- Unclear stochasticity and diversity of unobserved completions: The model samples Gaussian noise, but the paper reports primarily aggregate perceptual metrics. It does not measure sample diversity, calibration of uncertainty, mode collapse, or whether multiple generated completions represent plausible alternatives rather than inconsistent artifacts.
- No explicit mechanism for user-controllable uncertainty: Users cannot identify which hallucinated regions are reliable or request alternative completions. The paper leaves open how to expose uncertainty estimates, confidence maps, or controllable generation for downstream robotics and mixed-reality applications.
- Potential mismatch between perceptual quality and geometric correctness: FID and LPIPS may reward visually plausible hallucinations that are geometrically incorrect. The paper does not evaluate semantic correctness, metric-scale accuracy, collision-relevant geometry, surface completion accuracy, or object permanence in unobserved regions.
- Incomplete 3D-consistency analysis: The paper states that it evaluates 3D-based consistency metrics, but the provided results do not report those measurements. The effectiveness of joint RGB and scene-coordinate denoising for long-range geometric consistency therefore remains insufficiently documented.
- No comparison against a broader set of reconstruction baselines in the main results: The main experiments emphasize generative NVS methods. The relative performance, speed, and quality compared with strong feed-forward 3D reconstruction or 3D Gaussian prediction methods are not fully established in the presented text.
- Ablation design does not isolate all major factors: The ablation combines VAE skip connections and LoRA weights into one condition, preventing separate attribution of their effects. It also does not isolate the mask, gradient blocking, scene-coordinate modality, cross-view attention, flow matching, neighbor weighting, or two-stage training schedule.
- Unclear contribution of the reconstruction branch components: The sparse source-to-target attention, cross-target attention, geometric distance prior, FiLM conditioning, detached temporal embedding, and residual regularization are not individually evaluated. Their necessity and relative importance remain unknown.
- Fixed hyperparameters may limit generality: The number of neighbors , Euler steps , mask thresholds, loss weights, and latent/refinement resolutions are not analyzed for sensitivity. The paper does not establish whether one configuration works across scene types, camera baselines, and depth-quality regimes.
- Potential artifacts at mask boundaries: Applying refinement only to observed pixels can create seams, discontinuities, or inconsistent texture transitions near observed–unobserved boundaries. Boundary-specific visual and geometric evaluation is not provided.
- Global decoder adaptation may affect unobserved pixels: Although supervision is masked, LoRA adapters modify the decoder globally. The paper claims that generation quality is preserved, but it does not fully analyze unintended changes to unobserved regions, especially for out-of-distribution scenes or rare object appearances.
- Frozen-backbone limitation: Decoupled optimization prevents refinement gradients from improving the generative backbone or its scene-coordinate predictions. It remains unresolved whether joint, alternating, or selectively coupled training could yield better results without contaminating the generative prior.
- Scene-coordinate prediction quality is not directly validated: The reconstruction branch relies on decoded scene-coordinate maps for geometric neighbors, yet the paper does not report scene-coordinate accuracy, correspondence precision, or the relationship between coordinate errors and final image quality.
- Handling of invalid or unreliable warped evidence is underexplored: Forward warps can contain holes, splatting collisions, disocclusion errors, and blended pixels. The method uses masks and warped signals but does not detail a principled confidence model for distinguishing reliable evidence from geometrically incorrect evidence.
- Inference-time speed comparison is not fully standardized: Reported runtimes are approximate and may depend on hardware, implementation, resolution, number of target views, and sampling steps. The claim of being one to two orders of magnitude faster needs more controlled profiling, including preprocessing and depth-estimation costs.
- Training and computational costs are not reported in sufficient detail: The paper discusses inference efficiency but does not provide training time, GPU memory requirements, dataset-scale compute, or the cost of iterative-denoising supervision.
- Generalization to resolutions and aspect ratios not seen during training is unknown: The architecture uses latent-grid conditioning, decoder adaptations, and full-resolution attention, but resolution scalability and performance on high-resolution targets are not evaluated.
- Temporal coherence for sequences remains unresolved: Cross-view attention may improve consistency among jointly generated targets, but the paper does not evaluate flicker, identity preservation, camera-path continuity, or consistency when targets are generated incrementally rather than in one batch.
- Evaluation does not address downstream task utility: The motivating applications involve navigation, collision avoidance, and mixed reality, but no experiments test whether generated geometry improves planning, obstacle detection, localization, simulation, or interactive scene exploration.
- The distinction between reconstruction and generation may depend on the target camera distribution: The paper uses fixed strides and selected interpolation/extrapolation protocols. Performance for arbitrary camera trajectories, extreme rotations, large translations, backward motion, and targets far outside the source-camera convex hull remains unknown.
- Failure cases are referenced but not characterized in the main text: The conclusion refers to supplementary failure-mode and depth-robustness analyses, but the paper does not summarize the conditions under which GenRec fails, the frequency of failures, or practical detection and mitigation strategies.
- Ethical and semantic risks of hallucinated content are not discussed: For applications such as robotics, inspection, or mixed reality, plausible but false geometry may lead to unsafe decisions. The paper does not address safeguards for distinguishing observed evidence from generated content or preventing overconfident use of hallucinations.
Practical Applications
Immediate Applications
The paper’s demonstrated combination of sparse-view synthesis, geometry-aware conditioning, region-specific supervision, and substantially faster inference supports the following applications that could be prototyped with current computer-vision and graphics infrastructure:
- Rapid 3D capture for real-estate and construction visualization — Real estate, architecture, construction. A small number of posed photographs could be converted into navigable virtual tours, interior previews, renovation visualizations, or remote site inspections. GenRec can preserve observed walls, furniture, and textures while generating plausible views around occlusions or outside the captured camera volume. Potential workflow: capture several smartphone images → estimate depth and camera poses → generate target viewpoints with GenRec → export rendered frames or use them as input to a NeRF/3D Gaussian Splatting pipeline. Dependencies: reliable camera poses, sufficient overlap between views, and depth estimation accurate enough to produce valid observation masks. Hallucinated regions must be clearly labeled when visual accuracy is contractually important.
- Interactive virtual tours from sparse photographs — Tourism, museums, retail, media. Organizations could create lightweight navigable experiences without dense photogrammetric capture. Observed objects would remain geometrically and photometrically stable, while unseen areas could be filled with visually coherent but uncertain content. Potential products: browser-based virtual-tour generators, museum exhibit viewers, retail-space previews, and mobile “walk-around” interfaces. Dependencies: low-latency deployment on cloud GPUs or capable edge hardware; handling of reflective, transparent, outdoor, or highly dynamic scenes remains uncertain.
- Fast novel-view generation for film, advertising, and content production — Media and entertainment. GenRec could generate intermediate camera angles, coverage shots, and background extensions from limited footage or photographs. The reconstruction branch is particularly useful for retaining exact details in regions already seen, while the generative branch can produce plausible off-camera content. Potential workflow: use GenRec for rapid previsualization, storyboard generation, or background exploration, followed by conventional rendering or artist review for final production. Dependencies: generated content is not guaranteed to reproduce hidden scene geometry or identities exactly; commercial use would also require dataset, likeness, and copyright review.
- Sparse-view image enhancement and reconstruction — Photography and imaging software. The pixel-space refinement branch could be integrated into photo-editing or computational-photography tools to improve viewpoint changes while preserving high-frequency texture from source images. The observation mask provides a principled way to distinguish evidence-based enhancement from generative completion. Potential tools: “change viewpoint” editing, occlusion-aware panorama completion, image-to-image camera navigation, and detail-preserving frame interpolation. Dependencies: accurate warping and correspondence estimates; refinement should not be interpreted as recovering information that was never captured.
- Synthetic data generation for computer-vision research — Academia, robotics, autonomous systems. GenRec can expand small collections of posed images into multi-view training examples, including views that are partially unobserved. This may help train or evaluate depth estimation, pose estimation, correspondence, segmentation, and view-dependent recognition systems. Potential workflow: generate multiple target poses and retain the observation mask as metadata distinguishing measured pixels from model-generated pixels. Dependencies: synthetic images may contain systematic hallucination artifacts and should not replace real validation data. Generated labels for hidden regions require independent verification.
- Robotics simulation and visual planning prototypes — Robotics and embodied AI. A robot equipped with sparse visual observations could use GenRec to visualize likely appearances from candidate camera poses, support viewpoint selection, or construct approximate scene previews for navigation. The model’s joint RGB and scene-coordinate prediction may also provide useful correspondence signals. Potential workflow: robot captures a few images → estimates poses and depth → generates candidate views along possible trajectories → uses the results for visual planning or human supervision. Dependencies: GenRec should not be used as the sole source for collision avoidance or safety-critical decisions. Hallucinated free space, unseen obstacles, and depth errors require geometric sensors such as LiDAR, stereo, or RGB-D cameras.
- Mixed-reality scene previews — AR/VR and spatial computing. Headsets could use the method to fill temporary gaps in sparse room captures, providing smoother exploration before a complete scan is available. Observed furniture and surfaces could remain stable while unseen regions are plausibly completed. Potential products: rapid room-mapping previews, remote-assistance interfaces, virtual staging, and sparse-capture MR telepresence. Dependencies: temporal consistency, pose-tracking accuracy, and stable geometry across many successive target views must be validated beyond the reported benchmark settings.
- Inspection and documentation of physical spaces — Facilities management, insurance, education. Sparse images from a building, classroom, or industrial site could be converted into additional viewpoints for documentation, maintenance planning, or remote review. The observation mask can indicate which visual claims are directly supported by captured evidence. Dependencies: generated views are suitable for visualization and prioritization, but not necessarily for legally binding measurements, damage assessment, or compliance certification without physical verification.
- Faster research baselines and production inference — Software and ML infrastructure. The reported inference time of approximately 11 seconds per scene on the cited evaluation setup makes GenRec a practical baseline for interactive experiments and batch processing, particularly compared with much slower warp-conditioned video approaches. Potential tools: an inference API accepting source images, camera poses, and target poses; plug-ins for 3D reconstruction systems; and batch generation services for dataset expansion. Dependencies: the paper does not specify all hardware, resolution, and sampling-step details needed to generalize the timing claim to consumer devices or large-scale deployment.
Long-Term Applications
Several more ambitious uses follow from the method’s architecture but require additional research on uncertainty, temporal consistency, scale, robustness, and safety:
- Active visual exploration for autonomous robots — Robotics and industrial automation. A robot could compare generated views from candidate trajectories and select the next camera position that maximizes useful scene coverage or resolves ambiguous geometry. GenRec’s observation mask could serve as an explicit map of where additional sensing is needed. Required development: uncertainty calibration, multi-step consistency, integration with occupancy maps and planning systems, and guarantees that imagined regions cannot be mistaken for observed free space.
- Uncertainty-aware 3D reconstruction systems — Computer vision and geospatial computing. The paper distinguishes deterministic observed pixels from distributional unobserved pixels. A future system could expose this distinction directly through confidence maps, multiple sampled completions, or probabilistic 3D scene representations. Potential products: reconstruction software that reports “measured,” “inferred,” and “ambiguous” geometry; uncertainty-aware digital twins; and confidence-guided human review tools. Dependencies: GenRec currently uses a soft or binary observation mask but does not establish calibrated probabilities over alternative completions.
- Persistent digital twins from intermittent captures — Smart buildings, manufacturing, urban planning. Periodic sparse images from phones, drones, or inspection cameras could update a digital twin while generative synthesis supplies temporary views between observations. The reconstruction branch could preserve known changes, while generation could support visualization of incompletely observed areas. Required development: temporal scene modeling, dynamic-object handling, version control, metric-scale accuracy, and mechanisms to prevent outdated hallucinations from becoming part of the authoritative twin.
- Autonomous-driving and drone-scene completion — Transportation, logistics, aerial mapping. Sparse views could support anticipatory visualization around occlusions, buildings, terrain, or corners, potentially aiding route planning and simulation. Dependencies: the current evidence is based primarily on indoor and benchmark video-like scenes, with limited out-of-distribution evaluation. Safety-critical deployment would require extensive testing on weather, motion, unusual infrastructure, dynamic agents, and calibrated uncertainty.
- Immersive telepresence and remote operation — Healthcare, emergency response, defense, field service. A remote operator could receive a navigable scene synthesized from a small number of camera views, with known surfaces reconstructed precisely and unseen areas represented as plausible hypotheses. This could reduce bandwidth or enable rapid deployment of camera-equipped devices. Required development: view-to-view temporal stability, strict provenance indicators, low-latency streaming, adversarial robustness, and clear separation between captured and generated content. In medical or emergency contexts, hallucinated anatomy, hazards, or equipment must never be treated as factual.
- Camera-efficient 3D asset and scene production — Game development, simulation, XR. GenRec could become part of a pipeline that turns sparse photographs into editable 3D assets or environments, with generated views serving as pseudo-observations for downstream NeRF or Gaussian-splat optimization. Potential tools: automatic asset scanning, scene-layout reconstruction, simulation-environment generation, and multi-view texture baking. Dependencies: enforcing watertight geometry, consistent hidden surfaces, physically plausible materials, and temporal consistency requires more than the paper’s image-synthesis evaluation.
- Scientific and cultural-heritage visualization — Archaeology, conservation, education. Sparse documentation of artifacts, rooms, or excavation sites could be expanded into exploratory visualizations when complete scanning is expensive or impossible. The reconstruction/generation split is useful for preserving documented surfaces while marking speculative regions. Dependencies: strict provenance tracking, expert validation, preservation of fine measurements, and prohibition of generated completions from being presented as authentic historical evidence.
- Privacy-preserving visual data sharing — Healthcare, enterprise, public policy. In principle, systems could share sparse observations while generating views that support visualization without transmitting every original image. Region masks could help identify which portions are reconstructed from evidence and which are synthesized. Dependencies: generative models may reproduce identifiable people, text, logos, or sensitive spatial layouts. Formal privacy analysis, redaction, access controls, and leakage testing would be required before deployment.
- Policy and planning tools for spatial decision-making — Public administration and urban development. Governments could use sparse imagery to create preliminary visualizations of buildings, streets, or public spaces for planning discussions and community engagement. Dependencies: generated views must be treated as scenario visualizations rather than authoritative surveys. Policy workflows would need disclosure labels, audit trails, measurement validation, and safeguards against bias in the learned generative prior.
- Consumer mobile applications for viewpoint manipulation — Daily life and personal computing. A smartphone app could create alternative viewpoints of rooms, products, artworks, or personal photographs from only one or two images, supporting virtual furniture placement, resale listings, memory exploration, or accessibility-oriented scene viewing. Dependencies: mobile inference efficiency, robust pose and depth estimation, handling of mirrors and transparent objects, and user-facing warnings about hallucinated content are necessary for reliable products.
- Large-scale multi-view generative reconstruction foundation models — Academic and industrial research. The architecture suggests a broader family of models that jointly predict appearance, scene coordinates, masks, and uncertainty for many target views. Such models could unify sparse reconstruction, view synthesis, scene completion, and downstream 3D representation learning. Required development: training on more diverse environments and sensor modalities, scaling beyond a small number of views, improved depth front-ends, better handling of dynamic scenes, and evaluation protocols that separately measure observed-region fidelity and unobserved-region plausibility.
Glossary
- 3D Gaussian Splatting (3DGS): A scene-representation technique that models a 3D environment using many oriented Gaussian primitives rendered as splats. “Today's 3D scene representations, such as 3D Gaussian Splatting (3DGS)”
- Attention logits: Numerical scores used to determine how strongly an attention mechanism should weight different inputs. “we form the attention logits:”
- Back-projection: The process of mapping image pixels into 3D space using depth and camera parameters. “the back-projected source 3D points”
- Bimodal: Involving two distinct data modalities or information types. “our architecture's bi-modal nature”
- Conditional Flow Matching (CFM): A method for training a model to learn a continuous vector field that transports noise toward data distributions under specified conditions. “trained under the Conditional Flow Matching framework”
- Convex hull: The smallest convex region containing a set of points; here, the spatial region enclosed by input camera positions. “degrade once the camera leaves the convex hull of the inputs”
- Cross-attention: An attention operation in which queries from one representation attend to keys and values from another representation. “a sparse 3D cross-attention branch”
- Cross-modal attention: Attention that enables information exchange between different data modalities, such as RGB images and scene coordinates. “a zero-initialized cross-modal attention layer couples the RGB and scene-coordinate tokens”
- Cross-view attention: Attention that allows representations from multiple camera views to interact. “self-attention is rewired into cross-view attention over all target tokens”
- Disocclusion: A region newly revealed in a target view because an occluding object no longer blocks it. “Pixels without coverage (in disocclusions or beyond the captured frustum)”
- Distribution matching: Training a model so that its predicted probability distribution resembles the distribution of the target data. “the distribution-matching objective”
- Euler sampling: A numerical integration procedure that iteratively follows a learned vector field to generate samples. “letting us train straight flows that admit fast Euler sampling at inference”
- Extrapolation: Synthesis of views outside the spatial or angular range covered by the input views. “single-view extrapolation”
- Feed-forward inference: Producing an output in one direct network pass without optimizing separately for each scene or instance. “PixelNeRF~\citep{yu2021pixelnerf} conditions a radiance field on image features in a single forward pass”
- FiLM (Feature-wise Linear Modulation): A conditioning mechanism that scales and shifts neural feature maps using parameters derived from another representation. “followed by FiLM-conditioned residual blocks”
- Flow matching: A generative-model training framework that learns a velocity field connecting a noise distribution to a data distribution. “a multi-view flow matching backbone”
- Flow velocity: The vector field specifying the instantaneous direction and rate at which a sample moves along a generative trajectory. “which converts the -prediction into a flow velocity in closed form”
- Frustum: The 3D viewing volume extending from a camera through its image plane. “beyond the captured frustum”
- Generative prior: Learned statistical knowledge about plausible data that guides the generation of missing or uncertain content. “preserving the generative prior in unobserved regions”
- Hallucination: Generation of plausible content that is not directly supported by the observed input. “to hallucinate plausible novel views”
- In-distribution: Belonging to the same data distribution as the examples used for training. “two in-distribution benchmarks”
- Latent diffusion model: A diffusion-based generative model that performs its denoising process in a compressed latent representation rather than directly in pixel space. “a pretrained -prediction latent diffusion model”
- Latent compression: Reduction of image information into a lower-dimensional representation, potentially losing fine-grained details. “detail lost to latent compression”
- LoRA (Low-Rank Adaptation): A parameter-efficient fine-tuning method that learns low-rank updates to existing neural-network weights. “A LoRA adapter~\citep{hu2022lora} on the decoder's convolutions”
- Metric-scale ambiguity: Uncertainty about the absolute physical scale of a reconstructed scene when only relative geometric information is available. “suffers from metric-scale ambiguity”
- Monocular depth estimator: A model that predicts scene depth from a single image. “an off-the-shelf monocular depth estimator”
- Multi-view consistency: Agreement among synthesized views such that they represent the same underlying 3D scene. “yielding cross-view consistency”
- Novel-view synthesis (NVS): Generation of an image of a scene from a camera viewpoint not present among the input images. “generative novel-view synthesis with sparse input views”
- Out-of-distribution (OOD): Describing data that differs substantially from the distribution used for training. “for out-of-distribution generalization”
- Photometric fidelity: Accuracy with which image appearance, including colors, brightness, and fine visual detail, is reproduced. “a photometric fidelity ceiling”
- Plücker rays: A mathematical representation of 3D lines used to encode camera rays for geometric conditioning. “pose-only conditioning via Pl\"ucker rays”
- Point-cloud rendering: Projection of a set of 3D points, often carrying color or other attributes, into a camera view. “warp-based conditioning that injects forward-projected depth or point-cloud renders”
- Posterior: A probability distribution representing plausible explanations or completions after incorporating observed evidence. “only a posterior over completions consistent with the visible scene is identifiable”
- Pseudo-observation: A generated or estimated datum treated as if it were a directly observed measurement. “which can then be fed back as pseudo-observations to a 3DGS or NeRF”
- Radiance field: A function that represents the emitted or reflected light at points in 3D space as viewed from different directions. “Neural Radiance Fields”
- Scene-coordinate map: An image-like representation assigning a 3D world-space coordinate to every pixel. “a scene-coordinate map ”
- Score distillation: An optimization technique that uses a pretrained diffusion model’s score estimates to guide another representation toward realistic outputs. “Beginning with score distillation”
- Sparse cross-attention: Cross-attention restricted to a small, selected set of candidate correspondences instead of all possible positions. “a sparse 3D cross-attention branch”
- Specular highlight: A view-dependent bright reflection caused by light reflecting from a surface. “view-dependent effects (e.g., specular highlights)”
- Stop-gradient: An operation that prevents derivatives from propagating through a tensor during backpropagation. “the masked stop-gradient construction”
- Transformer block: A neural-network module typically composed of attention and feed-forward sublayers, often with normalization and residual connections. “we extend each transformer block of ”
- VAE (Variational Autoencoder): A neural architecture that encodes data into a probabilistic latent space and decodes latent variables back into data. “Both modalities use pretrained VAEs”
- View-dependent shading: Changes in apparent surface brightness or color caused by differences in viewing direction. “modulated only by view-dependent shading”
- Warp artifacts: Visual distortions or inconsistencies introduced when image content is geometrically warped between camera views. “but inherits warp artifacts”
- Zero initialization: Initializing selected neural-network weights to zero so that a newly added module has no effect at the beginning of training. “The zero initialization preserves the pretrained prior at training start”