---
title: Body Segment Volume Estimation
url: https://www.emergentmind.com/topics/body-segment-volume-estimation-bsv
type: topic
---

# Body Segment Volume Estimation

Searching arXiv for recent and canonical papers on body segment volume estimation and closely related volumetry methods.
Body Segment Volume Estimation (BSV) denotes the estimation of whole-body volume, individual body-part volumes, or anatomically defined tissue-compartment volumes from visual, depth, surface-mesh, CT, or MRI data. In current arXiv literature, the term spans monocular RGB regression of 14 body-part volumes and total body volume, dual RGB-D reconstruction of whole-body and segment volumes, depth-derived convex-hull aggregation, CT and MRI mask-based volumetry, and graph-based prediction of internal adipose-tissue compartments from body surface meshes [2107.02259], [2509.10429], [2410.02800], [2106.00652], [1702.03833], [2308.02493]. Across these formulations, BSV is not a single algorithmic problem but a family of estimation tasks whose outputs may be geometric body-part volumes, tissue volumes in \(cm^3\), or uncertainty-calibrated volumetric intervals.

## 1. Scope and task variants

The literature uses BSV in both a strict and an extended sense. In the strict anthropometric sense, the target is the volume of the whole body or explicit anatomical parts such as head, torso, arms, forearms, hands, thighs, shins, and feet. In the extended body-composition sense, the targets are tissue compartments such as skeletal muscle, bone, subcutaneous adipose tissue (SAT), visceral adipose tissue (VAT), abdominal subcutaneous adipose tissue (ASAT), or lumbar vertebral-body volumes. A further extension is crowd-level aggregation, where the objective is the collective body volume of all people visible in an RGB image [2501.01877].

| Paradigm | Input | Output |
|---|---|---|
| Monocular RGB regression | One RGB image plus body height | Volumes of 14 body parts and total body volume |
| RGB-D / depth reconstruction | Two RGB-D cameras or one overhead depth camera | Whole-body and segment volumes |
| Surface-mesh inference | Triangulated body surface mesh | VAT and ASAT volumes |
| CT / MRI volumetry | 3D CT or MRI slices | Tissue volumes, vertebral volumes, LV volume |
| Crowd aggregation | Single RGB image of a crowd | Collective body volume |

A representative formulation is VolNet, which takes one RGB image and the person’s body height and predicts the volumes of 14 body parts and the total body volume [2107.02259]. A different formulation estimates body volume and height from 3D data acquired with an overhead Intel RealSense D415 camera and uses those quantities to support body-weight estimation in emergency medicine [2410.02800]. In CT-based work, whole-body or regional segmentation directly yields volumes for skeletal muscle, bone, SAT, and VAT, often in vertebra-indexed slabs or in chest–abdomen–pelvis subvolumes [2106.00652], [2502.09779].

A common misconception is that BSV always means direct geometric reconstruction of external body shape. The literature shows three distinct targets: direct geometric volume, segmentation-derived tissue volume, and inference of internal volume from external shape proxies. Mesh-based VAT/ASAT prediction is a whole-graph regression problem, not a direct measurement of visible segment geometry [2308.02493]. Conversely, CT workflows are direct volumetry from labeled voxels rather than regression from surface appearance [2002.10776].

## 2. Geometric pipelines and explicit volume computation

A large class of BSV methods is geometric and reconstruction-driven. In the depth-camera pipeline for emergency medicine, the RealSense D415 is positioned directly above the subject and captures depth maps at \(848 \times 480\) pixels and 30 FPS. Background is removed with the DepthQualityTool SDK, body-part segmentation is performed with models such as MobileNet and ResNet, a polygon file is constructed from the depth-derived data, and filtering and smoothing are applied before volume is computed from convex hulls on multiple body sections [2410.02800]. Rather than computing one convex hull over the entire body, the method subdivides the point cloud into anatomical regions and sums their volumes:
\[
V_{\text{total}}=\sum_{i=1}^{n} V_i
\]
where \(V_i\) is the convex-hull-derived volume of the \(i\)-th body segment. Height is derived from the bounding-box extent,
\[
H = Y_{\max} - Y_{\min}.
\]

A related but more explicitly anthropometric system uses two Intel RealSense L515 LiDAR RGB-D cameras placed front and back, performs extrinsic calibration with an ArUco marker, detects landmarks with MediaPipe Holistic, segments body parts with BodyPix, cleans and merges point clouds, and reconstructs a watertight mesh through enhanced As-Rigid-As-Possible (ARAP) non-rigid registration [2509.10429]. The ARAP energy is
\[
E_{ARAP} =
\sum_{i=1}^{n}w_{i}\sum_{j\in\mathcal{N}(i)} w_{ij}\parallel(p_{i}'-p_{j}')-R_{i}(p_{i}-p_{j})\parallel^2
\]
with cotangent weights
\[
w_{ij} =
\frac{1}{2}(cot\alpha_{ij}+cot\beta_{ij}).
\]
The paper adds a regularization term scaled by total mesh area \(A\) to prevent collapse in lateral gap regions, then computes whole-body and isolated segment volumes from the closed meshes. On FAUST, the reported whole-body mean Relative Volume Error (RVE) is approximately \(1.23\%\) in NoEr and \(2.14\%\) in L515; box experiments report RVE below \(1\%\) [2509.10429].

Low-cost 3D scanning has also been used to estimate segment masses for biomechanics. A whole-body Sense™ 3D scanner produces an STL mesh, markers define anatomical cuts, the mesh is dismembered into 15 body parts, and segment masses are estimated via
\[
m_i = \rho_i V_i.
\]
The study reports that the mass error in one segment can be as large as \(5.31\%\) of overall body weight and that mean influence on calculated joint moment varies from \(0.68\%\) to \(12.68\%\) in 18 joints [1805.05330]. This indicates that segment volume estimation is not merely descriptive geometry; it directly changes downstream inverse-dynamics outputs.

## 3. Learning-based inference from RGB images and surface meshes

Monocular RGB BSV is exemplified by VolNet, a multi-stage architecture that predicts 2D pose, body-part segmentation, 3D pose, and finally body-part volumes from the RGB image plus body height [2107.02259]. The first three tasks use stacked hourglass subnetworks, while the volume regressor uses a ResNeXt-50 backbone with cardinality 32 and two fully connected layers. Intermediate tasks are trained with MSE for 2D and 3D pose and categorical cross-entropy for segmentation; final volume regression minimizes MSE between predicted and ground-truth body-part volumes. The synthetic SURREALvols dataset contains 372,142 images at \(256 \times 256\) resolution, with annotations for 2D pose, 3D pose, body-part segmentation, body height, and volumes of 14 body parts. On the test set, VolNet reports total-volume MAPE of \(6.17\%\) and a success rate within \(10\%\) tolerance of approximately \(82\%\), compared with BodyNet’s mean APE of \(15.66\%\) and about \(38\%\) success at \(10\%\) tolerance [2107.02259]. The paper also states that removing body height causes a large drop in MAPE, making height the critical scale anchor.

Surface-mesh BSV replaces RGB appearance with explicit external geometry. A triangulated mesh \(\mathit{M}\) is treated as a graph \(\mathit{G} := (\mathit{V}, \mathit{E})\), and a Graph Neural Network with GraphSAGE convolutions performs whole-graph regression of VAT and ASAT from the body surface [2308.02493]. The node update is
\[
h_v^{k} = \sigma \left (  \mathbf{W} \cdot \text{MEAN} (\{ h_v^{k-1} \} \cup \{  h_u^{k-1}, \forall u \in \mathcal{N}_v \} ) \right ).
\]
The architecture uses three GraphSAGE layers, batch normalization, max aggregation, and a three-layer MLP, trained for 150 epochs with Adam and shrinkage loss. Meshes are generated with marching cubes and decimated to 10,000, 5,000, 1,000, 500, 200, and 100 faces. Reported test \(R^2\) scores reach up to \(0.893\) for VAT and \(0.941\) for ASAT, with GNN training times of about 8–38 min depending on decimation; a 1,000-face mesh is highlighted as a particularly good trade-off with VAT \(R^2 \approx 0.893\), ASAT \(R^2 \approx 0.935\), and training time \(\approx 10\) minutes [2308.02493].

Crowd Volume Estimation (CVE) generalizes BSV from one person to all visible people in a scene. The task is defined as estimating the undergarment total body volume occupied by human bodies in a scene from a single RGB image, with objective
\[
\min_{\theta} \|V_{tot} - M_{\theta}(I)\|.
\]
The ANTHROPOS-V benchmark provides 768 Full HD videos at 30 fps across 384 diverse scenarios, with per-person total body volume, SMPL shape parameters, keypoints, and per-part volume annotations [2501.01877]. STEERER-V replaces head-centered density supervision with Per-Part Volume Density Maps, distributing torso volume across five torso keypoints and using a more spatially distributed supervision signal. This suggests that segment-level supervision remains useful even when the final task is crowd-level aggregation.

## 4. Segmentation-based medical volumetry

Medical BSV is dominated by segmentation-derived volumetry. In whole-body CT body-composition analysis, automated 3D segmentation labels skeletal muscle, bone, SAT, and VAT across the scanned body, and volumes are then computed from segmented voxels in \(cm^3\) [2106.00652]. Validation on 50 evaluation CT volumes reports average Dice similarity coefficients of 0.980 for bone, 0.974 for skeletal muscle, 0.986 for SAT, and 0.960 for VAT, with Dice defined as
\[
\frac{2(A\bigcap B)}{|A|+|B|}.
\]
The same study also reports vertebra-indexed regional slab volumes from 21 vertebral levels, C4–C7, T1–T12, and L1–L5, and frames this expansion from single-slice proxies to whole-body 3D tissue volumetric distribution as “extended body composition” [2106.00652].

A publicly accessible CT pipeline segments skeletal muscle, SAT, VAT, and muscular fat across the chest, abdomen, and pelvis using a 2D nnU-Net with ResEnc presets / nnU-Net ResEnc XL-style configuration. TotalSegmentator localizes T12, L3, and L4, enabling 2D measurement at the L3 slice and 3D measurement over the T12-to-L4 subvolume [2502.09779]. The overlap metric is
\[
\text{Dice} = \frac{2 |A \cap B|}{|A| + |B|}
\]
and the error for derived body-composition measurements is
\[
\text{MRAE} = \frac{1}{n} \sum_{i=1}^{n} \left| \frac{A_i - B_i}{A_i} \right|.
\]
On the internal dataset, average Dice is \(93.19\%\) at L3, \(92.21\%\) for T12–L4, and \(91.79\%\) across all slices, with average MRAE of \(5.31\%\), \(6.31\%\), and \(4.37\%\); on the external SAROS dataset, average Dice is \(91.91\%\) at L3, \(91.81\%\) for T12–L4, and \(89.98\%\) across all slices, with average MRAE of \(6.15\%\), \(5.50\%\), and \(5.48\%\) [2502.09779]. The paper explicitly notes that its “volume” estimates are derived from stacked axial slices and voxel geometry rather than a full dedicated 3D body-segment volumetric model.

Whole-abdomen CT analysis likewise combines 3D semantic segmentation with HU-based tissue subclassification. A multi-resolution U-Net 3D predicts abdominal cavity, bones, muscle, subcutaneous tissue, and thoracic cavity, after which muscle is identified by HU between \(-29\) and \(150\) and adipose tissue by HU between \(-190\) and \(-30\); adipose tissue inside abdominal cavity is VAT, and adipose tissue inside subcutaneous tissue is SAT [2002.10776]. The combined loss is
\[
\mathbb{L}_{SV} = 0.5 \cdot \mathbb{L}_{XCE} + 0.5 \cdot \mathbb{L}_{Dice}.
\]
The best model reports test-set Dice scores of 0.9735 for abdominal cavity, 0.9423 for bones, 0.9334 for muscle, 0.9623 for subcutaneous tissue, and 0.9652 for thoracic cavity, with average 0.9553; ICC values are 0.999 for SAT, 0.998 for VAT, and 0.991 for muscle [2002.10776].

MRI-based BSV follows the same logic of slice-wise segmentation plus geometric integration. For LV volumetry, an ROI detector localizes the chamber, a hypercolumns fully convolutional network segments it, and physical area is integrated along the short-axis stack. The interval volume is modeled as a truncated circular cone,
\[
V_i = (S_i + S_{i+1} + \sqrt{S_i S_{i+1}})(L_{i+1}-L_{i})/3,
\]
with total volume
\[
\hat{V} = \sum_{i=1}^{N-1}V_i.
\]
An end-to-end differentiable approximation replaces the square-root term during training, and the final system ranked 4th on the Kaggle challenge with mean CRPS 0.010666 [1702.03833]. Vertebral-body volumetry from spiral CT is another specialized instance: a coarse-to-fine pipeline combining deformable balloon segmentation, multiseeded volume growing, automatic pedicle cut, and trabecular compartment extraction reports accuracy errors below \(4\%\) for volume in phantom data and intra- and inter-operator precision below \(1.5\%\) in patient data [1705.07143].

## 5. Statistical estimation, uncertainty, and evaluation

The field includes both deterministic volumetry and uncertainty-aware estimation. A statistical baseline for convex bodies studies points uniformly distributed over a convex set \(C \subset \mathbb{R}^d\) under a Poisson point process model and shows that the convex hull
\[
\widehat C = \operatorname{conv}\{X_1,\dots,X_N\}
\]
is a sufficient and complete statistic for the volume problem when \(\lambda\) is known [1502.05510]. The oracle estimator is
\[
\widehat V_{\text{oracle}} = |\widehat C| + \frac{N_\partial}{\lambda},
\]
it is exactly unbiased, UMVU, and has variance
\[
\operatorname{Var}(\widehat V_{\text{oracle}}) = \frac{1}{\lambda}\,\mathbb E\bigl[\,|C\setminus \widehat C|\,\bigr].
\]
For unknown \(\lambda\), the practical estimator
\[
\widehat V = |\widehat C| + \frac{N_\partial}{N_\circ+1}\,|\widehat C|
\]
is asymptotically unbiased with exponentially small bias [1502.05510]. Although this work is not an anthropometric imaging pipeline, it formalizes a core geometric issue in hull-based volume estimation: the raw hull underestimates true volume because of missing boundary mass.

Uncertainty quantification in medical volumetry has been addressed with conformal prediction. Given a predicted lower and upper volume \(l_i,u_i\) and true volume \(Y_i\), the conformal score is
\[
s_i = \max(l_i - Y_i,\; Y_i - u_i),
\]
the calibration quantile is
\[
\hat{q} = \text{Quantile}\!\left(s_1,\ldots,s_n;\frac{\lceil (n+1)(1-\alpha)\rceil}{n}\right),
\]
and the predictive interval is
\[
\Gamma_{\alpha}(X_i) = [\,l_i - \hat{q},\; u_i + \hat{q}\,].
\]
Under exchangeability, marginal coverage satisfies
\[
1-\alpha \le P\!\left(Y_{\text{test}} \in \Gamma_{\alpha}(X_{\text{test}})\right) \le 1-\alpha + \frac{1}{n+1}.
\]
Weighted conformal prediction then reweights calibration samples through a density ratio estimated from compressed latent representations of a MONAI Dynamic U-Net [2407.19938]. On shifted synthetic volumetry, standard conformal prediction drops to \(87.47 \pm 1.08\%\) coverage while W-Oracle reaches \(95.22 \pm 1.57\%\) and W-Latent \(93.39 \pm 0.90\%\); on shifted brain-tumor volumetry with target coverage \(90\%\), standard conformal prediction miscovers at roughly \(80\%\) for all three tumor subregions, while weighted methods improve coverage [2407.19938].

Evaluation protocols vary strongly across BSV subfields. RGB body-volume regression reports MAPE, AE, and APE [2107.02259]; RGB-D reconstruction reports RVE and, in real acquisitions, Relative Mass Error [2509.10429]; surface-mesh adipose prediction reports \(R^2\) and training time [2308.02493]; CT segmentation uses Dice, ICC, and MRAE [2106.00652], [2502.09779], [2002.10776]; crowd-volume estimation uses MAE and PP-MAE [2501.01877]. This suggests that cross-paper comparisons are modality-specific unless the measurement target, anatomical scope, and evaluation metric are aligned.

## 6. Applications, limitations, and bibliographic ambiguities

The application range of BSV is broad. In emergency medicine, body volume and height are intended to support body-weight estimation for proper dosing of weight-based medications when direct measurement is impractical [2410.02800]. In cardiometabolic risk assessment, VAT and ASAT are treated as stronger indicators than BMI or waist circumference [2308.02493]. In oncology and precision medicine, whole-body and vertebra-indexed tissue volumes are proposed as patient-specific features for chemotherapy toxicity prediction, surgical outcome prediction, survival modeling, nutritional assessment, aging and cachexia phenotyping, and longitudinal monitoring [2106.00652]. In biomechanics, subject-specific segment volumes and densities alter inverse-dynamics outputs in OpenSim [1805.05330]. In osteoporosis, lumbar vertebral-body volume and trabecular VOIs support combined geometry and BMD assessment [1705.07143]. In ergonomics, sports biomechanics, and clinical monitoring, dual RGB-D BSV enables proximal/distal volume ratios from a portable setup [2509.10429]. Crowd-scale estimation further connects body volume to infrastructure stress assessment and weight-balance analysis [2501.01877].

The main limitations are equally heterogeneous. Monocular RGB methods rely on known body height, synthetic training data, and viewpoints represented in the training distribution; performance degrades for views from above, from below, and some back views [2107.02259]. RGB-D reconstruction requires the subject to stand still, depends on good calibration and segmentation, and shows greater variability in upper-arm estimates; head, hands, and feet were discarded from the final two-camera volume analysis [2509.10429]. CT methods face limited validation set sizes, inter-slice inconsistency, partial field-of-view scans, artifact sensitivity, and the fact that some “volume” estimates are assembled from independently segmented axial slices rather than full 3D geometric reconstruction [2106.00652], [2502.09779], [2002.10776]. Mesh-based inference from external surface shape remains a proxy model for internal tissue distribution [2308.02493]. Conformal intervals improve coverage under shift, but interval width increases and the method requires unlabeled test samples for weight estimation [2407.19938].

A further literature issue is bibliographic ambiguity. The record "Lightweight Neural Framework for Robust 3D Volume and Surface Estimation from Multi-View Images" [2606.23653], despite its title and abstract, is described in the provided details as a CVPR-style author-response / rebuttal LaTeX template containing no algorithm, no network, no dataset, no experiments, and no equations for volume estimation. As a source for BSV, it has essentially no direct relevance. This is a useful corrective: in BSV, paper titles and bibliographic context are not sufficient evidence of methodological content.

Overall, BSV is best understood as a set of volumetric estimation paradigms unified by a common output type rather than by a common architecture. Some methods estimate explicit segment geometry from reconstructed meshes, some infer absolute volume from monocular appearance using scale anchors, some compute tissue volumes directly from voxel masks, and some attach calibrated intervals to those measurements. The unifying research problem is quantitative volumetry of anatomically meaningful body structures under practical constraints of sensing modality, annotation regime, and deployment environment.

Source: https://www.emergentmind.com/topics/body-segment-volume-estimation-bsv