REVIEW 4 major objections 5 minor 54 references
4DPV: 4D Pet from Videos by Coarse-to-Fine Non-Rigid Radiance Fields
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read A coarse-to-fine neural deformation model recovers camera pose and 4D shape of unknown deformable objects from casual multi-view videos, without 3D templates or 3D training data.
desk verdict Solid incremental extension of BANMo with a local quadratic deformation model, but the 'unknown object' claim is unvalidated because all experiments depend on pretrained category-specific DensePose CSE. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The method combines three learned modules: (1) a coarse neural radiance field with Linear Blend Skinning (LBS) that maps points between canonical and image space, estimating root and bone poses from latent codes; (2) a fine deformation network, the Local Quadratic Model (LQM), which takes the coarse canonical point and a deformation code and outputs a 3x9 matrix of linear, quadratic, and cross-term coefficients, applied to an extended coordinate vector to produce a refined point, with losses enforcing spatial and temporal smoothness of the coefficient matrices; and (3) a fine canonical network with extra samples to refine shape and appearance. Cross-sequence correspondence is anchored by Continuous Surface Embeddings (CSE) learned in canonical space and matched to DensePose predictions in 2D, plus 2D/3D cycle consistency and optical-flow reprojection losses.
What would settle it
Run the pipeline on a deformable category with no pre-trained CSE model (e.g., a horse or a cloth toy captured in several videos) and check whether the recovered canonical shape, per-frame meshes, and camera trajectories stay consistent across sequences; also ablate by removing the CSE losses (Eq. 17) and measuring how much the Chamfer distance and novel-view PSNR degrade on the existing cat and dog datasets.
Extended reading notes
Core claim
The central claim is that decomposing the deformation into a coarse articulated part (linear blend skinning) and a fine part (a neural local quadratic model with spatial and temporal coherence) lets a single self-supervised pipeline jointly estimate camera poses, an implicit canonical shape, and a time-varying deformation field from multiple monocular RGB videos, even under uncontrolled lighting and unknown camera motion. The fine quadratic model, applied per point via an MLP, captures bending, stretching, and twisting that piecewise-linear models miss, while the fine canonical network avoids over-constraining the surface and preserves detail. The paper reports quantitative and qualitative improvements over BANMo and ViSER on synthetic and real animal and human datasets, including higher mesh fidelity and fewer artifacts such as extra legs or heads.
Load-bearing premise
The method relies on pre-trained category-specific surface embeddings (DensePose/CSE) to supply dense correspondences across sequences; for an object category without such a model, the cross-sequence anchor disappears and the self-supervised pipeline has no way to align the videos.
Editorial extensions
If this is right
- If the method works as claimed, detailed 4D reconstruction of pets and other deformable animals becomes possible from casual multi-view phone footage, with no 3D scanning or category-specific template.
- The coarse-to-fine decomposition suggests a general recipe: use a physically motivated coarse model (e.g., skinning) to avoid local minima, then add a local higher-order deformation to recover fine surface detail without losing global consistency.
- The learned canonical shape and deformation can be reused for novel-view synthesis at arbitrary time steps, enabling free-viewpoint video of the reconstructed object.
- The self-supervised nature of the pipeline means it could scale to large video collections of many objects, since it does not depend on 3D ground-truth data.
- The ablation study indicates that both the fine deformation model and the fine canonical network contribute to quality, and the spatio-temporal smoothness terms are necessary to avoid artifacts.
Reading between the lines
- The method is not fully category-agnostic as stated, because the CSE correspondences rely on a pre-trained DensePose model that exists only for a few categories (cat, dog, human); a direct test on a category without such an embedding would show how far the self-supervised pipeline can stretch.
- A natural extension would be to replace the fixed CSE with online-learned embeddings from the video collection itself, which would break the dependency on category-specific models and potentially generalize to arbitrary deformable objects.
- The local quadratic model is a second-order polynomial deformation field per point; one could view it as a truncated Taylor expansion, and higher-order terms or a learned basis might capture even finer effects such as fur or cloth wrinkles, at the cost of more regularization.
- The requirement for silhouettes and optical flow from off-the-shelf networks suggests that end-to-end learning of these prerequisites within the same framework, or making the method robust to their noise, would be a direct testable improvement.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes 4DPV, a coarse-to-fine neural deformation model for jointly recovering camera pose and 4D shape of a dynamic object from multiple RGB videos without a 3D template or 3D training data. The method combines a Linear Blend Skinning coarse model, a local quadratic deformation network with spatio-temporal smoothness, and a fine canonical network, trained self-supervised with photometric, silhouette, optical-flow, CSE, and cycle-consistency losses. It is evaluated on four synthetic datasets (AMA-swing, AMA-samba, Eagle, Hands) and three real datasets (casual-cat, adult-5, casual-dog), with comparisons to BANMo and ViSER and an ablation on view synthesis.
Significance. If the claims hold, the contribution is a plausible extension of BANMo that improves fine detail in non-rigid NeRF reconstruction, and the authors release code, which aids reproducibility. The core architectural idea of combining LBS coarse deformation with a local quadratic deformation model is reasonable and is evaluated on both synthetic and in-the-wild datasets. However, the paper's central generality claim ('unknown object') is not fully supported because the method depends on category-specific DensePose CSE supervision, and the empirical support for 'outperforms state-of-the-art' is weakened by inconsistent results in Table 1 and the absence of error bars or significance tests. The manuscript is worth a major revision rather than rejection, since the identified issues are addressable with additional ablations, corrected metrics, and phrase revision.
major comments (4)
- [Abstract; Section 3.1; Eq. (17); Eq. (19)] The claim that the method recovers an 'unknown object' is load-bearing, but the optimization relies on category-specific Continuous Surface Embeddings from a pretrained DensePose network [26] through L_cse2D and L_cse3D in Eq. (17), which are part of the global objective in Eq. (19). All evaluated categories (cat, dog, human) already have pretrained CSE models; for a genuinely novel deformable category without a pretrained embedding model, the cross-sequence correspondence anchor disappears. The paper does not provide a controlled ablation that removes the CSE losses, and the qualitative note in Fig. 3 about 'without 3D CSE constraining' is not quantified in Table 2. Thus the abstract's 'unknown object' and 'no 3D training data' wording goes beyond what the formulation and experiments demonstrate.
- [Section 6.3; Table 1] The claim of outperforming state-of-the-art approaches is not consistently supported by Table 1. The full method is worse than its own baseline on Hands (CD 6.0 vs. 5.4), worse than the '+ fcn' variant on Eagle (5.1 vs. 4.7) and Hands (6.0 vs. 4.8), and worse than the original BANMo on AMA-swing (10.0 vs. 9.1). No error bars, multiple-seed runs, or significance tests are reported, so the 'best on average' conclusion is fragile. The authors should report variance and/or a paired comparison to substantiate the superiority claim.
- [Eq. (15); Section 5] The fine silhouette loss is defined as ||s_c(\bar{x}) - s_f(\bar{x})||^2, comparing the coarse and fine silhouette predictions against each other rather than comparing the fine prediction to the ground-truth mask s(\bar{x}). This contradicts the preceding sentence, which states the silhouette loss penalizes deviations between the predicted 2D shape and the segmentation mask. If implemented exactly as written, the fine network is not directly supervised by the ground-truth silhouette; the authors should correct the formula or clarify the intended teacher-student behavior.
- [Section 6.3; Table 2; Fig. 3] The ablation study in Table 2 evaluates view synthesis quality (PSNR/SSIM) rather than 3D reconstruction accuracy, while the main quantitative comparison in Table 1 reports Chamfer distance and F-score. These two rankings can differ, and indeed the '+ fcn' variant already outperforms the full method on two datasets in Table 1. The qualitative claim in Fig. 3 about omitting 3D CSE constraining is not backed by a quantitative ablation isolating the CSE terms. The component analysis therefore does not clearly establish which proposed module is responsible for the reported gains.
minor comments (5)
- [Table 1] Several F@2% entries are missing (BANMo on AMA-samba, ViSER on AMA-samba and possibly others); the authors should either report the values or explicitly state why they are omitted.
- [Section 6.1] The sentence 'We obtain the weight coefficients experimentally and fix them for all experiments, obtaining a non-overfitted solution' makes an unsupported claim; reporting a small hyperparameter sweep or a sensitivity check would be more appropriate.
- [Eq. (12) and Eq. (13)] The notation A^t_{s,k} appears in the loss formulas but is not defined; clarify that it denotes MLP_Q evaluated at the sampled neighboring point.
- [Section 6.3] The phrase 'we also employ this algorithm in our training setup' is ambiguous because it is unclear whether 'this algorithm' refers to BANMo or ViSER; rephrase for clarity.
- [General] The text contains many OCR-like artifacts (e.g., 'coarse-to-\ufb01ne', 'de\ufb01ne', 'con\ufb01gurations') and inconsistent hyphenation; a careful proofreading pass is needed.
Circularity Check
No significant circularity: the method is a self-supervised fitting pipeline supervised by external measurements (pixels, masks, optical flow, DensePose CSE) and evaluated on held-out views and ground-truth meshes.
full rationale
All loss terms in Eq. (19) are supervised by external measurements: ground-truth pixels in Eq. (14), object masks in Eq. (15), off-the-shelf optical flow in Eq. (16), and the pretrained DensePose/CSE network in Eq. (17); none of these targets is produced by the model being trained. The learned canonical embeddings are matched to DensePose outputs rather than defining those outputs, so the correspondence signal is an external prior, not a self-referential fit. The quantitative claims (Table 1 Chamfer distance/F-score, Table 2 PSNR/SSIM) are computed against ground-truth synthetic meshes and held-out rendered views, not against training quantities, so no fitted constant is renamed as a prediction. The fine silhouette term in Eq. (15) uses the coarse silhouette as a teacher target, but the coarse silhouette is itself pinned to external masks; this is a student-teacher design, not circularity. The only self-citations (e.g., [3], [33]) are contextual related-work references and are not load-bearing. The paper's reliance on DensePose CSE does limit the abstract's 'unknown object' claim to categories with a pretrained embedding model, but that is an unvalidated generality and scope concern, not a circular derivation.
Assumptions & free parameters
free parameters (3)
- loss weights λ in Eq. (19) =
λ_pf=0.1, λ_sf=1, λ_Q=1e3, λ_pc=0.1, λ_sc=1, λ_of=0.1, λ_reg=0.02
- number of bones B =
25
- smoothness neighborhood size K =
6
assumptions (6)
- standard math Volume rendering equation (Eq. 1) is an accurate model of image formation.
- domain assumption Linear blend skinning with 25 bones can represent the coarse deformation of an arbitrary animal or human.
- domain assumption A local quadratic map (Eq. 9) with per-point MLP coefficients can capture fine non-rigid deformations.
- domain assumption Continuous Surface Embeddings (CSE) provide correct dense correspondences across sequences for the object category.
- domain assumption Off-the-shelf silhouette and optical flow estimates are sufficiently accurate.
- ad hoc to paper Photometric, silhouette, flow, CSE, and cycle losses are sufficient to disambiguate the non-rigid shape and camera pose.
Cite this review
Pith. "Pith review of 4DPV: 4D Pet from Videos by Coarse-to-Fine Non-Rigid Radiance Fields." pith.science (2026). https://pith.science/paper/UKQFAGBW
@misc{pith2026241110275,
author = {Pith},
title = {Pith review of: 4DPV: 4D Pet from Videos by Coarse-to-Fine Non-Rigid Radiance Fields},
year = {2026},
howpublished = {\url{https://pith.science/paper/UKQFAGBW}},
note = {Machine review of arXiv:2411.10275}
}
read the original abstract
We present a coarse-to-fine neural deformation model to simultaneously recover the camera pose and the 4D reconstruction of an unknown object from multiple RGB sequences in the wild. To that end, our approach does not consider any pre-built 3D template nor 3D training data as well as controlled illumination conditions, and can sort out the problem in a self-supervised manner. Our model exploits canonical and image-variant spaces where both coarse and fine components are considered. We introduce a neural local quadratic model with spatio-temporal consistency to encode fine details that is combined with canonical embeddings in order to establish correspondences across sequences. We thoroughly validate the method on challenging scenarios with complex and real-world deformations, providing both quantitative and qualitative evaluations, an ablation study and a comparison with respect to competing approaches. Our project is available at https://github.com/smontode24/4DPV.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[26]
Neverova, N., Novotny, D., Szafraniec, M., Khalidov, V ., Labatut, P ., V edaldi, A.: Continuous surface embeddings. NeurIPS (2020)
work page 2020
-
[1]
Agarwal, S., Snavely, N., Simon, I., Seitz, S.M., Szeliski, R.: Building Rome in a day. In: ICCV (2009)
work page 2009
-
[2]
Agudo, A.: Safari from visual signals: Recovering volumetric 3D shapes. In: ICASSP (2022)
work page 2022
-
[3]
Agudo, A.: Unsupervised 3D reconstruction and grouping of rigid and non-rigid categories. TPAMI44(1), 519–532 (2022)
work page 2022
-
[4]
Agudo, A., Moreno-Noguer, F.: DUST: Dual union of spatio-temporal subspaces for monoc- ular multiple object 3D reconstruction. In: CVPR (2017)
work page 2017
-
[5]
Agudo, A., Moreno-Noguer, F.: Force-based representation for non-rigid shape and elastic model estimation. TPAMI40(9), 2137–2150 (2018)
work page 2018
-
[6]
Agudo, A., Moreno-Noguer, F., Calvo, B., Montiel, J.M.M.: Sequential non-rigid structure from motion using physical priors. TPAMI38(5), 979–994 (2016)
work page 2016
-
[7]
Akhter, I., Sheikh, Y ., Khan, S., Kanade, T.: Trajectory space: A dual representation for nonrigid structure from motion. TPAMI33(7), 1442–1456 (2011)
work page 2011
Show all 54 references
-
[8]
In: ICCV (2021)
Chen, X., Zheng, Y ., Black, M.J., Hilliges, O., Geiger, A.: Snarf: Differentiable forward skinning for animating non-rigid neural implicit shapes. In: ICCV (2021)
2021
-
[9]
In: ECCV (2010)
Fayad, J., Agapito, L., Del Bue, A.: Piecewise quadratic reconstruction of non-rigid surfaces from monocular sequences. In: ECCV (2010)
2010
-
[10]
In: BMVC (2009)
Fayad, J., Del Bue, A., Agapito, L., Aguiar, P .: Non-rigid structure from motion using quadratic deformation models. In: BMVC (2009)
2009
-
[11]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition
Fridovich-Keil, S., Meanti, G., Warburg, F.R., Recht, B., Kanazawa, A.: K-planes: Explicit radianceelds in space, time, and appearance. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. pp. 12479–12488 (2023)
2023
-
[12]
In: CVPR (2013)
Garg, R., Roussos, A., Agapito, L.: Dense variational reconstruction of non-rigid surfaces from monocular video. In: CVPR (2013)
2013
-
[13]
TPAMI33(10), 2051–2065 (2011)
Gotardo, P .F.U., Martinez, A.M.: Computing smooth time-trajectories for camera and de- formable shape in structure from motion with occlusion. TPAMI33(10), 2051–2065 (2011)
2011
-
[14]
In: CVPR (2020)
Kirillov, A., Wu, Y ., He, K., Girshick, R.: Pointrend: Image segmentation as rendering. In: CVPR (2020)
2020
-
[15]
In: ICCV (2019)
Kong, C., Lucey, S.: Deep non-rigid structure from motion. In: ICCV (2019)
2019
-
[16]
In: CVPR (2023)
Kuai, T., Karthikeyan, A., Kant, Y ., Mirzaei, A., Gilitschenski, I.: CAMM: Building category-agnostic and animatable 3D models from monocular videos. In: CVPR (2023)
2023
-
[17]
In: CVPR (2020)
Kulkarni, N., Gupta, A., Fouhey, D., Tulsiani, S.: Articulation-aware canonical surface map- ping. In: CVPR (2020)
2020
-
[18]
PR77(11), 428–443 (2017)
Kumar, S., Dai, Y ., Li, H.: Spatio-temporal union of subspaces for multi-body non-rigid structure-from-motion. PR77(11), 428–443 (2017)
2017
-
[19]
In: CVPR (2016)
Lee, M., Cho, J., Oh, S.: Consensus of non-rigid reconstructions. In: CVPR (2016)
2016
-
[20]
In: CVPR (2014)
Lee, M., Choi, C.H., Oh, S.: A procrustean markov process for non-rigid structure recovery. In: CVPR (2014)
2014
-
[21]
In: ACM SIGGRAPH (2000)
Lewis, J., Cordner, M., Fong, N.: Pose space deformation: a unied approach to shape inter- polation and skeleton-driven deformation. In: ACM SIGGRAPH (2000)
2000
-
[22]
In: CVPR (2021)
Li, Z., Nuklaus, S., Snavely, N., Wang, O.: Neural sceneowelds for space-time view synthesis of dynamic scenes. In: CVPR (2021)
2021
-
[23]
TOG34(6), 1–16 (2015)
Loper, M., Mahmood, N., Romero, J., Pons-Moll, G., Black, M.J.: SMPL: A skinned multi- person linear model. TOG34(6), 1–16 (2015)
2015
-
[24]
In: ECCV (2020)
Mildenhall, B., Srinivasan, P ., Tancik, M., Barron, J., Ramamoorthi, R., Ng, R.: Nerf: Rep- resenting scenes as neural radianceelds for view synthesis. In: ECCV (2020)
2020
-
[25]
arXiv preprint arXiv:2201.05989 (2022) 16 S
Müller, T., Evans, A., Schied, C., Keller, A.: Instant neural graphics primitives with a mul- tiresolution hash encoding. arXiv preprint arXiv:2201.05989 (2022) 16 S. M. de Paco and A. Agudo
2022 arXiv
-
[27]
In: CVPR (2021)
Neverova, N., Sanakoyeu, A., Labatut, P ., Novotny, D., V edaldi, A.: Discovering relation- ships between object categories via universal canonical maps. In: CVPR (2021)
2021
-
[28]
In: CVPR (2010)
Newcome, R., Davison, A.J.: Live dense reconstruction with a single moving camera. In: CVPR (2010)
2010
-
[29]
In: CVPR (2022)
Niemeyer, M., Barron, J., Mildenhall, B., Sajjadi, M., Geiger, A., Radwan, N.: Regnerf: Regularizing neural radianceelds for view synthesis from sparse inputs. In: CVPR (2022)
2022
-
[30]
In: ICCV (2021)
Park, K., Sinha, U., Barron, J., Bouaziz, S., Goldman, D., Seitz, S., Martin-Brualla, R.: Ner- es: Deformable neural radianceelds. In: ICCV (2021)
2021
-
[31]
In: CVPR (2021)
Pumarola, A., Corona, E., Pons-Moll, G., Moreno-Noguer, F.: D-nerf: Neural radianceelds for dynamic scenes. In: CVPR (2021)
2021
-
[32]
In: CVPR (2016)
Schonberger, J., Frahm, J.: Structure-from-motion revisited. In: CVPR (2016)
2016
-
[33]
In: ECCV (2020)
Sidhu, V ., Tretschk, E., Golyanik, V ., Agudo, A., Theobalt, C.: Neural dense non-rigid struc- ture from motion with latent space constraints. In: ECCV (2020)
2020
-
[34]
arXiv preprint arXiv:2306.05872 (2023)
Sklyarova, V ., Chelishev, J., Dogaru, A., Medvedev, I., Lempitsky, V ., Zakharov, E.: Neu- ral haircut: Prior-guided strand-based hair reconstruction. arXiv preprint arXiv:2306.05872 (2023)
2023 arXiv
-
[35]
IEEE Transactions on Visualization and Computer Graphics29(5), 2732–2742 (2023)
Song, L., Chen, A., Li, Z., Chen, Z., Chen, L., Y uan, J., Xu, Y ., Geiger, A.: Nerfplayer: A streamable dynamic scene representation with decomposed neural radianceelds. IEEE Transactions on Visualization and Computer Graphics29(5), 2732–2742 (2023)
2023
-
[36]
Tatarchenko, M., Richter, S., Stephan, R., Ranftl, R., Li, Z., Koltun, V ., Brox, T.: What do single-view 3D reconstruction networks learn? In: CVPR (2019)
2019
-
[37]
TPAMI30(5), 878–892 (2008)
Torresani, L., Hertzmann, A., Bregler, C.: Nonrigid structure-from-motion: estimating shape and motion with hierarchical priors. TPAMI30(5), 878–892 (2008)
2008
-
[38]
In: ICCV (2021)
Tretschk, E., Tewari, A., Golyanik, V ., Zollhöfer, M., Lassner, C., Theobalt, C.: Non-rigid neural radianceelds: Reconstruction and novel view synthesis of a dynamic scene from monocular video. In: ICCV (2021)
2021
-
[39]
In: CVPR (2016)
Ulusoy, A.O., Black, M.J., Geiger, A.: Patches, planes and probabilities: A non-local prior for volumetric 3D reconstruction. In: CVPR (2016)
2016
-
[40]
arXiv preprint arXiv:2112.03907 (2021)
V erbin, D., Hedman, P ., Mildenhall, B., Zickler, T., Barron, J., Srinivasan, P .: Ref- nerf: Structured view-dependent appearance for neural radianceelds. arXiv preprint arXiv:2112.03907 (2021)
2021 arXiv
-
[41]
In: ACM SIGGRAPH (2008)
Vlasic, D., Baran, I., Matusik, W., Popovi ´c, J.: Articulated mesh animation from multi-view silhouettes. In: ACM SIGGRAPH (2008)
2008
-
[42]
In: CVPR (2021)
Wang, C., Lucey, S.: Paul: Procrustean autoencoder for unsupervised lifting. In: CVPR (2021)
2021
-
[43]
In: CVPR (2022)
Xu, Q., Xu, Z., Philip, J., Bi, S., Shu, Z., Sunkavalli, K., Neumann, U.: Point-nerf: Point- based neural radianceelds. In: CVPR (2022)
2022
-
[44]
In: ICCV (2019)
Xu, X., Dunn, E.: Discrete Laplace operator estimation for dynamic 3D reconstruction. In: ICCV (2019)
2019
-
[45]
In: NeurIPS (2019)
Y ang, G., Ramanan, D.: V olumetric correspondence networks for opticalow. In: NeurIPS (2019)
2019
-
[46]
In: CVPR (2021)
Y ang, G., Sun, D., Jampani, V ., Vlasic, D., Cole, F., Chang, H., Ramanan, D., Freeman, W., Liu, C.: Lasr: Learning articulated shape reconstruction from a monocular video. In: CVPR (2021)
2021
-
[47]
In: NeurIPS (2021)
Y ang, G., Sun, D., Jampani, V ., Vlasic, D., Cole, F., Liu, C., Ramanan, D.: Viser: Video- specic surface embeddings for articulated 3D shape recon- struction. In: NeurIPS (2021)
2021
-
[48]
In: CVPR (2022) 4DPV 17
Y ang, G., V o, M., Neverova, N., Ramanan, D., V edaldi, A., Joo, H.: BANMo: Building ani- matable 3D neural models from many casual videos. In: CVPR (2022) 4DPV 17
2022
-
[49]
NeurIPS (2021)
Y ariv, L., Gu, J., Kasten, Y ., Lipman, Y .: V olume rendering of neural implicit surfaces. NeurIPS (2021)
2021
-
[50]
In: ICCV (2015)
Y u, R., Russell, C., Campbell, N., Agapito, L.: Direct, dense, and deformable: Template- based non-rigid 3D reconstruction from rgb video. In: ICCV (2015)
2015
-
[51]
In: CVPR (2022)
Zhang, X., Bi, S., Sunkavalli, K., Su, H., Xu, Z.: Nerfusion: Fusing radianceelds for large- scale scene reconstruction. In: CVPR (2022)
2022
-
[52]
In: CVPR (2014)
Zhu, Y ., Huang, D., De La Torre, F., Lucey, S.: Complex non-rigid motion 3D reconstruction by union of subspaces. In: CVPR (2014)
2014
-
[53]
in the wild
Zuf, S., Kanazawa, A., Berger-Wolf, T., Black, M.J.: Three-D safari: Learning to estimate zebra pose, shape, and texture from images "in the wild". In: ICCV (2019)
2019
-
[54]
In: CVPR (2018)
Zuf, S., Kanazawa, A., Black, M.J.: Lions and tigers and bears: Capturing non-rigid, 3D, articulated shape from images. In: CVPR (2018)
2018
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.