Skip to Content
EntropyEntropy
  • Article
  • Open Access

28 February 2026

Robust 2D Human Pose Estimation with Parallel Graph–Attention Modeling and Entropy-Aware Feature Decoding

,
,
,
and
1
School of Management, Harbin University of Commerce, Harbin 150028, China
2
China Academy of Civil Aviation Science and Technology, Beijing 100028, China
3
Business School, Birkbeck, University of London, Malet Street, Bloomsbury, London WC1E 7HX, UK
4
China National Institute of Standardization, Beijing 100191, China
This article belongs to the Section Multidisciplinary Applications

Abstract

Robust 2D human pose estimation remains challenging due to occlusion and background interference, which introduce substantial uncertainty into visual representations. This paper proposes PMNet, a Parallel Modeling Network that integrates explicit graph-based structural modeling and implicit self-attention-based semantic modeling through parallel pathways to jointly capture local dependencies and global contextual relationships among keypoints. From an information-theoretic perspective, occlusion and clutter can be interpreted as sources of increased representational entropy, and PMNet addresses this issue by progressively reducing uncertainty through complementary structural reasoning and attention-based information selection. The framework incorporates a criss-cross attention module to suppress irrelevant features, an adaptive nonlinear fusion strategy to balance complementary information across parallel branches, and an error-compensated decoding method to sharpen heatmap distributions and refine keypoint localization while maintaining efficiency. Extensive experiments on the MPII and COCO benchmarks demonstrate that PMNet achieves state-of-the-art or comparable performance, attaining 92.42% PCKh@0.5 on MPII and 77.3% AP on COCO. Ablation studies and qualitative visualizations further confirm the effectiveness of each component, showing improved signal-to-noise ratios and more concentrated heatmap responses. Overall, PMNet provides a robust and efficient pose estimation framework with strong potential for real-world applications such as surveillance and autonomous systems.

1. Introduction

Human pose estimation (HPE) is a pivotal task in computer vision and underpins a wide range of applications, including autonomous driving, human–computer interaction, healthcare monitoring, and public-safety surveillance [1]. By accurately localizing human joints in images or videos, HPE enables downstream tasks such as behavior recognition, action prediction, and safety assessment. In smart-city scenarios, pose estimation supports abnormal-event detection in crowded spaces (e.g., shopping malls and transportation hubs) [2]. In autonomous vehicles, reliable pose inference contributes to pedestrian-intent understanding and trajectory prediction for safer navigation [3]. Despite rapid progress, HPE methods remain fragile in real-world conditions involving occlusion, background clutter, scale variation, and diverse poses.
Most mainstream HPE pipelines adopt convolutional neural networks (CNNs) with heatmap regression to predict keypoint likelihoods [4,5]. While this paradigm benefits from strong representation learning and structured spatial outputs, its final coordinate estimation is often affected by quantization errors and restrictive assumptions about output distributions [6,7]. To improve decoding precision, prior work has explored integral regression, Taylor-expansion refinement, and error-compensation decoding that corrects systematic biases in predicted coordinates [8]. However, decoding improvements alone are insufficient when visual evidence is ambiguous or the surrounding context is inconsistent, which frequently occurs under heavy occlusion or complex scenes [9].
To strengthen contextual reasoning, recent studies incorporate multi-branch refinement architectures and attention mechanisms to exchange semantics across scales or spatial regions [10]. Nevertheless, although some recent works attempt to combine local structural modeling and global attention mechanisms, many approaches either adopt sequential integration strategies or lack adaptive fusion schemes, which may still result in suboptimal feature coordination and potential conflicts. Convolution-based attention is typically limited in capturing long-range dependencies, whereas global self-attention may overlook fine-grained local cues, especially when keypoints are densely occluded or irregularly distributed. These limitations motivate a unified and robust modeling paradigm that can jointly capture both local structure and global context [11].
In this work, we propose a Parallel Modeling Network (PMNet) that integrates explicit and implicit keypoint relationship modeling in parallel. Specifically, the explicit pathway leverages a graph neural network (GNN) to encode keypoint relations based on human-body topology, which is well-suited for relational reasoning under occlusion. In parallel, an implicit pathway employs self-attention to capture long-range dependencies and global interactions. By decoupling these complementary modeling routes, PMNet reduces feature interference and supports richer representation learning. Furthermore, we introduce a dynamic feature fusion strategy that adaptively aggregates the two pathways to improve feature consistency and robustness. Viewed through an information-theoretic lens, the explicit and implicit pathways can be regarded as two complementary information channels, encoding structural priors and global semantic dependencies, respectively. Parallel processing enables the aggregation of complementary cues while reducing uncertainty, rather than amplifying redundant or conflicting information through serial entanglement. Finally, an error-compensation decoding module refines keypoint localization by correcting coordinate bias in heatmap-based predictions.
Our main contributions are summarized as follows:
  • Parallel modeling framework with adaptive coordination: We propose a dual-branch architecture that explicitly models keypoint correlations via GNNs and implicitly captures long-range dependencies via self-attention, coupled with an adaptive nonlinear fusion mechanism to dynamically coordinate structural and semantic cues for robust 2D heatmap-based pose estimation.
  • Adaptive Nonlinear Feature Coordination Module: Instead of simple concatenation or linear projection, we introduce a dual-dimensional (channel-wise and spatial-wise) nonlinear attention-based fusion mechanism that dynamically re-weights structured and contextual feature maps in 2D heatmap space, enabling fine-grained conflict mitigation and feature complementarity.
  • Spatial Graph Perception Operator: Instead of applying standard graph convolution on joint embeddings, we design an edge-conditioned spatial graph perception layer that performs attention-weighted feature aggregation directly on keypoint-level feature maps, enabling adaptive structural reasoning under occlusion and spatial ambiguity.
  • Information-Theoretic Perspective on Representation Refinement: We provide an information-theoretic perspective to interpret occlusion, background clutter, and feature interference as sources of spatial uncertainty in heatmap representations. Under this view, the proposed attention filtering, parallel modeling, and adaptive fusion mechanisms can be understood as progressively concentrating response distributions and reducing spatial ambiguity in keypoint localization.
  • Refinement-Decoding Coupled Bias Mitigation: Rather than proposing a new decoding algorithm, we integrate distribution-aware error-compensation decoding within the parallel refinement framework, demonstrating that structural and contextual refinement substantially reduces systematic coordinate bias prior to decoding and alters the optimal compensation regime.
In summary, PMNet addresses persistent challenges in HPE through parallel semantic modeling and dynamic fusion, yielding improved precision, robustness, and adaptability across diverse environments.

3. Methodology

3.1. Overall Framework

We propose a hybrid parallel pose refinement network, termed PMNet, to improve 2D human keypoint localization by jointly modeling both strong and weak inter-joint correlations. Unlike conventional serial refinement pipelines, where a single dominant pathway may suppress complementary cues and induce feature conflicts, PMNet adopts a dual-pathway parallel architecture. Specifically, it comprises (i) an explicit modeling pathway based on graph neural networks (GNNs) to capture local structural relations among joints, and (ii) an implicit modeling pathway using self-attention to encode global semantic dependencies. These two pathways operate in parallel to refine backbone features from complementary perspectives, thereby reducing interference during integration and enabling richer pose representations. Concretely, the network is divided into explicit and implicit keypoint modeling branches, each independently refining features extracted by the backbone [63].
The refined high-level semantic features from the two branches are then integrated by an adaptive feature fusion module, which aggregates local and non-local information to enhance robustness against occlusion, background clutter, and pose diversity. To further strengthen representation capacity, PMNet stacks the fusion process in an N-layer manner, enabling progressive integration and refinement across multiple stages.
As illustrated in Figure 1, the overall framework consists of four core components: (i) a backbone network for feature extraction, (ii) a feature filtering module, (iii) an N-layer PMNet block for parallel modeling and adaptive fusion, and (iv) a heatmap prediction head. The PMNet block is the key innovation, where the explicit branch leverages graph-based reasoning to encode local joint dependencies, while the implicit branch uses self-attention to model global interactions across the full pose. Both branches refine the backbone feature maps independently and are subsequently fused to form a multi-perspective pose representation.
Figure 1. Parallel modeling networks. Overview of the proposed PMNet architecture. The framework consists of a backbone network, a feature filtering module, an N-layer PMNet block, and a heatmap prediction head. The explicit modeling branch (blue) captures local structural relationships among joints, while the implicit modeling branch (pink) models global semantic dependencies via self-attention. The central yellow region denotes stacked PMNet layers for parallel refinement. Colored feature blocks represent multi-channel feature maps, and the green skeleton indicates the predicted pose output.
To enhance discriminative feature learning before parallel modeling, we introduce a cross-directional attention mechanism between the backbone and the two parallel branches. This mechanism facilitates selective emphasis on informative regions while considering joint constraints and global context, which improves the quality of refined features and ultimately benefits keypoint localization. The heatmap prediction head follows the Simple Baseline design for consistent heatmap regression and decoding [4].
For the backbone, we consider HRNet and ResNet, which are widely adopted for pose feature extraction. To improve efficiency, we retain only the ImageNet pre-training part of HRNet and simplify the architecture by removing the last sampling fusion stage. As a result, only the first three stages of HRNet are preserved, maintaining high-resolution representations while reducing the parameter count to approximately 25% of the original HRNet. This modification aims to balance accuracy and computational cost, preserving essential feature extraction capability with substantially reduced complexity.
For notation convenience, we denote the local information refined by the explicit modeling branch as X L , and the non-local information modeled by the implicit branch as X N L .

3.2. Feature Filtering Module

To address the limitation of convolutional neural networks treating all spatial locations equally, this study introduces a feature screening module positioned between the backbone network and the PMNet layer. This module enhances the model’s ability to concentrate on salient regions by filtering out irrelevant information and guiding the learning process toward essential features during training. In essence, this feature filtering process performs an implicit entropy reduction by suppressing high-entropy background responses and preserving low-entropy, task-relevant features, thereby improving the reliability of downstream keypoint estimation. While the CBAM attention mechanism has gained popularity due to its strong performance, its use of a 7 × 7 convolution for spatial attention presents challenges such as high memory consumption and a restricted receptive field.
To overcome these drawbacks, we adopt the Criss-Cross Attention Module (CAM), which effectively preserves long-range spatial dependencies and captures dense contextual information. Compared with the Non-Local module, CAM is more memory-efficient and computationally faster. As illustrated in Figure 2 [50], the module first computes the similarity between a given spatial location and other pixels in the image, and then applies weighted aggregation based on these similarity scores to assign attention weights accordingly.
Figure 2. Criss-cross attention. Visualization of the Criss-Cross Attention mechanism, which captures long-range dependencies by attending to both horizontal and vertical spatial directions. The yellow, purple, and blue blocks represent the 1 × 1 convolution projections generating query (Q), key (K), and value (V) feature maps, respectively. The pink block denotes affinity computation followed by softmax normalization, and the green block indicates feature aggregation. This design enables efficient contextual aggregation while maintaining low computational overhead.
By capturing contextual cues along both horizontal and vertical directions, CAM addresses the issue of incomplete context extraction caused by sparsely distributed global constraints. Through the training process, the network is progressively guided to focus on informative features, ultimately improving the precision of keypoint localization.
The proposed feature filtering network is constructed based on the Criss-Cross Attention mechanism, as illustrated in Figure 2. Let the local feature map output from the backbone network be denoted as F R H × W × C , where H × W represents the spatial resolution and C is the number of feature channels. This feature map is projected into two separate feature spaces via two 1 × 1 convolutional layers, producing tensors Q and K , with { Q , K } R C × H × W , where C < C is the reduced channel dimension. Additionally, a third tensor V R C × H × W is derived to preserve the original feature richness.
For a given spatial location u, a query vector Q u R C is extracted from Q . Concurrently, a set of key vectors Ω u R ( H + W 1 ) × C , corresponding to the row and column that intersect at position u, is sampled from K . The similarity between the query vector and each key vector is computed as
d i , u = Q u Ω i , u ,
where i { 1 , , H + W 1 } , Ω i , u denotes the i-th vector in Ω u , and d i , u R represents the correlation between Q u and Ω i , u . The similarity scores are normalized using the softmax function to obtain the scalar attention weight A i , u .
Next, from the value tensor V , a set of vectors Φ u R ( H + W 1 ) × C , aligned with the same criss-cross pattern, is retrieved. The aggregated context-enhanced feature at location u, denoted as F u , is then computed by the weighted sum of these vectors:
F u = i = 1 H + W 1 A i , u ϕ i , u + F u ,
where F u represents the original feature at location u. The final output feature map maintains the same dimensionality as the input, i.e., C × H × W .

3.3. Explicit Modeling Module

In the explicit modeling module, we posit that strong intrinsic correlations exist among human body keypoints, primarily due to natural anatomical connections and tightly synchronized joint movements. This inherent structural dependency provides an essential basis for accurately modeling the complexity and variability of human motion. By leveraging such prior knowledge, the explicit modeling module is able to represent joint dynamics with higher fidelity and robustness.
To formalize this concept, strong inter-keypoint correlations are explicitly encoded using graph-based modeling strategies, which act as structural priors within the network. Such priors have been shown to be particularly effective for improving the localization of occluded or ambiguous keypoints [40]. As illustrated in Figure 3, the proposed explicit modeling module takes the preliminary keypoint feature responses generated by the backbone network and refines them through a graph-structured perception layer. This layer iteratively aggregates features from spatially and semantically adjacent nodes, enabling the network to explicitly learn structural dependencies and correlations between joints.
Figure 3. Explicit modeling module. Illustration of the proposed explicit modeling module, which refines backbone features through a graph-structured perception layer to explicitly capture inter-keypoint structural dependencies.
Through this design, the explicit modeling module enhances both the robustness and precision of keypoint estimation, particularly in scenarios involving occlusion or complex body configurations.
Existing graph convolutional networks can generally be categorized into frequency-domain graph convolution methods and spatial (null-domain) graph convolution methods [64,65]. In this work, we adopt the null-domain graph convolution paradigm, which performs convolution operations directly on graph nodes and their neighbors, updating node representations by propagating information along graph edges. The graph structure-aware network learns a mapping function on the graph by exploiting the natural connectivity of the human skeleton as structural prior knowledge, as illustrated in Figure 4.
Figure 4. Keypoint connection methods. Visualization of skeletal connectivity used to construct the graph structure for MPII and MSCOCO datasets.
Let the graph be denoted as G , with adjacency matrix A R K × K , where K is the number of keypoints. Let Z R K × d denote the feature matrix that aggregates the feature representations of all nodes in the graph. For a given node u, its updated representation Z u R d is computed by a nonlinear graph mapping function:
Z u = f ( Z , A ) ,
where f ( · ) denotes the learnable transformation implemented by the graph perception layer.
The detailed network design of the graph structure perception layer is shown in Figure 5, which illustrates the forward propagation process of a single-head graph perception layer. Let Z u denote the feature of the target (self) node and Z v denote the feature of a neighboring node. First, edge features are extracted via convolution to obtain intermediate representations B u and B v , capturing localized structural information. For the self node u, the edge mapping process is formulated as:
B u = T ( Z u ; θ ) = θ Z u ,
where ∗ denotes the convolution operation, θ is the convolution kernel, and B u R H × W × C represents the edge feature map of node u. In this work, we set C = 16 .
Figure 5. Network design for the graph structure perception layer. Illustration of the single-head graph perception layer, including edge feature extraction, attention-based aggregation, and node update operations.
Since different keypoints exhibit varying levels of detection difficulty and require distinct structural cues, an attention aggregation mechanism is introduced to adaptively weight neighboring node contributions. The attention score between node u and its neighbor v is computed as:
e u , v = σ α u , v concat ( B u , B v ) ,
S u , v = softmax v N u ( e u , v ) = exp ( e u , v ) j N u exp ( e u , j ) .
where α u , v denotes the attention convolution kernel (implemented using 1 × 1 convolution), σ ( · ) is a nonlinear activation function used to generate the unnormalized attention score e u , v , and S u , v is the normalized attention coefficient obtained by applying a softmax operation over the neighbor set N u , reflecting the relative importance of neighbor node v to node u at each spatial location.
The final node update is obtained by aggregating the weighted neighbor features:
Z u = v N u S u , v B v ,
where ⊙ denotes the Hadamard (element-wise) product, and N u represents the set consisting of node u and its neighboring nodes.
It is worth noting that the proposed graph perception layer differs from conventional spectral or spatial GCN formulations, which typically operate on flattened node embeddings. In contrast, our design performs edge-conditioned attention aggregation directly on spatial feature maps, allowing structural reasoning to interact with spatial uncertainty patterns in heatmap representations.
By explicitly modeling inter-keypoint structural relationships and adaptively aggregating neighbor information, the explicit modeling module provides strong structural constraints that improve pose estimation accuracy and robustness under occlusion and complex body configurations.

3.4. Implicit Modeling Module

In human pose estimation tasks, convolutional operations primarily process localized information and are inherently constrained by the spatial extent of convolutional kernels. Capturing relationships between distant keypoints therefore requires an effective expansion of the receptive field. Existing convolution-based approaches typically enlarge the receptive field by increasing network depth or adopting larger convolutional kernels [66]. However, such strategies inevitably introduce additional computational burden and may hinder efficiency.
To address this limitation, we employ a self-attention mechanism to capture long-range dependencies between joints [67]. Self-attention enables each spatial location to interact with all other locations, thereby modeling global contextual relationships that are difficult to capture using standard convolutional operations. Let the output feature map of the CNN backbone network after refinement by the feature filtering module be denoted as F R H × W × C . This feature map is first projected into a new embedding space to enhance the diversity of similarity computation and improve contextual modeling capability. Directly computing similarity on F only reflects semantic similarity, whereas mapping features into a transformed space allows attention weights to capture richer contextual correlations beyond local semantics.
After projection, the feature map is reshaped into a sequence X R L × d , where L = H × W denotes the number of spatial tokens and d is the embedding dimension. The resulting sequence is then processed by the self-attention network followed by a feedforward network. The overall architecture of the implicit modeling module is illustrated in Figure 6, and its operational principles are detailed below.
Figure 6. Implicit modeling module. Illustration of the implicit modeling module based on self-attention, which captures long-range dependencies by modeling global interactions among spatial features and integrates contextual information into pose representations. Different colored blocks represent the query (Q), key (K), and value (V) linear projections. The checkerboard matrix denotes the attention weights computed after softmax normalization. The green block indicates feature aggregation, and FN represents the feedforward network for nonlinear transformation.
For the projected feature sequence X , query, key, and value matrices are generated as Q R L × d , K R L × d , and V R L × d , through three learnable linear transformations parameterized by W q , W k , and W v R d × d , respectively. The attention weight matrix A R L × L is computed as:
A = softmax Q K d ,
where all parameters in W q , W k , and W v are learnable. Through this formulation, the self-attention mechanism explicitly models long-range joint relationships by computing correlations between spatial feature vectors, thereby capturing global dependencies among keypoints.
While self-attention effectively aggregates contextual information through linear transformations, its representational capacity is inherently limited without nonlinear modeling. To address this limitation, a feedforward network (FN) is employed following the attention operation. The FN introduces nonlinearity via activation functions, selectively amplifying informative features while suppressing less relevant responses, thus enhancing the discriminative capability of the learned representations.
In practice, the feedforward network projects the attention-enhanced features into a higher-dimensional space and subsequently reduces them back to the original or a lower dimensionality through fully connected layers. This high-to-low-dimensional transformation not only facilitates the extraction of more abstract and expressive features but also acts as a regularization mechanism that helps mitigate overfitting. Through the combination of global self-attention and nonlinear feedforward modeling, the implicit modeling module effectively complements the explicit graph-based branch by capturing global semantic dependencies among keypoints.

3.5. Multi-Head Attention Mechanisms and Feature Fusion Strategies

To enhance the semantic comprehension capability of the feature representations, PMNet employs a multi-head attention mechanism to capture complementary semantic information from multiple perspectives. By attending to different representation subspaces in parallel, the multi-head design facilitates the learning of diverse semantic abstractions and improves the robustness of feature modeling. As illustrated in Figure 7, the structure of the multi-head attention mechanism within the PMNet layer is shown, and its propagation process is formulated in Equation (8).
X l + 1 = concat f ( X l , 1 , A ) , , f ( X l , k , A ) ,
where f ( · ) denotes the mapping function learned in the PMNet layer, A represents the keypoint adjacency matrix, X l , k denotes the input features of the k-th attention head at the l-th layer, k is the number of attention heads (determined through ablation experiments), and X l + 1 denotes the output features of the ( l + 1 ) -th PMNet layer.
Figure 7. Multi-head attention mechanism. Illustration of the multi-head attention design in PMNet, where multiple attention heads operate in parallel to capture diverse relational patterns and semantic dependencies from different subspaces of the input features.
While the multi-head attention mechanism enhances semantic diversity, effective integration of features from parallel modeling branches remains critical. To further improve the representational capacity of the network, PMNet adopts a nonlinear feature fusion strategy to integrate refined features derived from the explicit and implicit modeling branches. Unlike linear fusion methods, nonlinear feature fusion increases expressive power by applying nonlinear transformations and adaptive weighting, enabling the model to capture more complex patterns and interactions among features.
The core principle of feature fusion lies in adaptively weighting heterogeneous feature representations, ensuring that more informative components contribute more significantly to the final output. In PMNet, this adaptive fusion is realized through attention-based neural modules that dynamically adjust fusion weights according to feature relevance. Specifically, attention mechanisms are employed to guide the nonlinear fusion process in both channel and spatial dimensions.
Channel attention focuses on modeling the relative importance of different feature channels by assigning adaptive weights along the channel dimension, while spatial attention emphasizes positional relevance by allocating weights to individual spatial locations within the feature map. By jointly considering channel-wise and spatial-wise importance, the fusion module is able to selectively enhance informative features while suppressing redundant or noisy responses.
The output of the nonlinear feature fusion process is expressed as:
Y fusion = G 1 X 1 + G 2 X 2 ,
where X 1 , X 2 R H × W × C denote the input feature maps to be fused, G 1 , G 2 R H × W × C represent dynamically generated feature weights, and ⊙ denotes element-wise (Hadamard) multiplication. The weights G 1 and G 2 are adaptively learned through attention mechanisms and reflect the relative importance of each feature component.
The dynamic fusion strategy that combines channel attention and spatial attention is illustrated in Figure 8. Through this nonlinear and adaptive fusion design, PMNet effectively integrates complementary information from multiple modeling branches, resulting in more discriminative and robust pose representations.
Figure 8. Dynamic fusion strategy for nonlinear features. Illustration of the adaptive feature fusion module that combines channel attention and spatial attention to dynamically integrate features from parallel branches based on their contextual relevance.

3.6. Error Compensation Decoding Methods

We emphasize that the error-compensation formulation itself follows Yang et al. (2021) [8]. Our contribution lies in analyzing and demonstrating how the proposed parallel refinement architecture reshapes heatmap distributions such that systematic bias is mitigated before decoding, thereby modifying the effective compensation behavior.
In the error compensation decoding framework, the heatmap predicted by the neural network can be decomposed into two components:
f ( x ) = g ( x ) + h ( x ) ,
where g ( x ) denotes the ideal Gaussian signal corresponding to the true keypoint location, and h ( x ) represents the error function, which includes both random noise and systematic bias. Figure 9 illustrates this decomposition in the one-dimensional case, and the conclusions naturally extend to two-dimensional heatmaps.
Figure 9. Qualitative comparison results on the MPII validation dataset. From left to right: input images, baseline predictions (HRNet), and results produced by the proposed PMNet. Red circles highlight representative failure cases or inaccurate keypoint localizations in the baseline method. PMNet demonstrates improved robustness under occlusion and complex poses, yielding more accurate and structurally consistent keypoint localization.
The decoding task can be interpreted as estimating the mean μ of the Gaussian signal g ( x ) when f ( x ) is observable while g ( x ) and h ( x ) are unknown. From an information-theoretic standpoint, the predicted heatmap can be interpreted as a discrete probability distribution over spatial locations, whose entropy reflects the uncertainty of keypoint localization. According to the definition of the Gaussian mean, μ can be expressed as:
μ = x 1 x 2 x g ( x ) d x x 1 x 2 g ( x ) d x .
where [ x 1 , x 2 ] denotes the effective support interval of the dominant response peak in the heatmap, i.e., a local neighborhood around the predicted keypoint location where g ( x ) is non-negligible, rather than the full heatmap domain.
By introducing a small offset Δ , the mean value of the noisy signal f ( x ) within the interval [ x 1 , x 2 Δ ] can be written as:
ν ( Δ ) = x 1 x 2 Δ x f ( x ) d x x 1 x 2 Δ f ( x ) d x .
Substituting Equation (10) into Equation (12) yields:
ν ( Δ ) = x 1 x 2 Δ x g ( x ) d x + x 1 x 2 Δ x h ( x ) d x x 1 x 2 Δ g ( x ) d x + x 1 x 2 Δ h ( x ) d x .
For neural networks producing heatmaps with high signal-to-noise ratio (SNR), the contribution of the error term in the denominator can be neglected:
x 1 x 2 Δ g ( x ) d x x 1 x 2 Δ h ( x ) d x .
Under this assumption, Equation (13) can be approximated as:
ν ( Δ ) x 1 x 2 Δ x g ( x ) d x + x 1 x 2 Δ x h ( x ) d x x 1 x 2 Δ g ( x ) d x .
Since Δ is small and the Gaussian distribution mainly responds within the interval around the mean, the following approximation holds:
x 1 x 2 g ( x ) d x x 1 x 2 Δ g ( x ) d x .
Substituting Equation (16) into Equation (15) gives:
ν ( Δ ) = x 1 x 2 Δ x g ( x ) d x + x 1 x 2 Δ x h ( x ) d x x 1 x 2 g ( x ) d x .
According to the definition of the Gaussian mean in Equation (12), Equation (18) can be rewritten as:
ν ( Δ ) = μ + x 1 x 2 Δ x h ( x ) d x x 1 x 2 g ( x ) d x .
We define the bias term δ ( Δ ) as:
δ ( Δ ) = x 1 x 2 Δ x h ( x ) d x x 1 x 2 g ( x ) d x .
If an optimal compensation offset Δ opt is selected such that
δ ( Δ opt ) = 0 ,
then the estimated mean satisfies:
μ ν ( Δ opt ) .
Substituting Δ opt into Equation (13), the final estimation of μ can be obtained as:
μ x 1 x 2 Δ opt x f ( x ) d x x 1 x 2 Δ opt f ( x ) d x .
where Δ opt is the error compensation factor.
From an information-theoretic standpoint, the refined heatmaps exhibit reduced spatial dispersion and more concentrated response distributions. Although our framework does not explicitly optimize entropy, the observed distributional changes align with reduced representational uncertainty.

4. Experimentation

4.1. Datasets and Evaluation Metrics

4.1.1. Datasets

We evaluate the proposed method on two widely used public benchmarks for human pose estimation: the MPII Human Pose Dataset [68] and the MSCOCO dataset [69]. All experiments are implemented using the PyTorch 2.10 framework and conducted on a single NVIDIA GeForce RTX 4090 GPU.
MPII Dataset
The MPII Human Pose Dataset contains approximately 25,000 images annotated with 16 body keypoints, covering more than 410 diverse human activities and totaling over 400,000 annotated keypoints. Notably, the dataset includes more than 33,000 occluded or invisible keypoints captured in complex real-world scenes, making it particularly suitable for evaluating robustness under occlusion and challenging pose variations. Following standard preprocessing protocols [24,70], each image is cropped around the annotated human center using a scale factor and resized to a fixed resolution of 256 × 256 pixels.
MSCOCO Dataset
The MSCOCO (Microsoft Common Objects in Context) dataset comprises over 200,000 images with approximately 250,000 annotated human instances, each labeled with 17 body keypoints. For fair comparison with existing methods, input images are resized to 256 × 192 pixels. The dataset is divided into training (train), validation (val), and test (test-dev) subsets. Model training is performed on the train set, evaluation is conducted on the val set, and final benchmarking is reported on the test-dev set using the official evaluation server.

4.1.2. Evaluation Metrics

MPII Metric
For the MPII dataset, performance is evaluated using the Percentage of Correct Keypoints normalized by head size (PCKh) [68]. PCKh measures the accuracy of predicted keypoint locations by comparing them with ground-truth annotations, normalized by the head segment length.
Formally, the PCKh score at threshold α is defined as:
PCKh @ α = 1 J i = 1 J f ( p i ) @ α ,
where J denotes the total number of keypoints and f ( p i ) is an indicator function defined as:
f ( p i ) @ α = 1 , d ( p i pre , p i gt ) α · 0.6 · L , 0 , otherwise ,
where p i pre and p i gt denote the predicted and ground-truth positions of the i-th keypoint, respectively, d ( · ) is the Euclidean distance, L is the diagonal length of the head bounding box, and α is the head-normalized threshold (typically set to 0.5).
MSCOCO Metric
For the MSCOCO dataset, performance is evaluated using Average Precision (AP) based on the Object Keypoint Similarity (OKS). The OKS metric is defined as:
OKS = i exp d i 2 2 s 2 k i 2 · δ ( v i > 0 ) i δ ( v i > 0 ) ,
where d i is the Euclidean distance between the predicted and ground-truth locations of the i-th keypoint, v i indicates the visibility flag, s represents the object scale (pixel area), k i is a keypoint-specific normalization constant, and δ ( · ) is the indicator function.
Following the standard MSCOCO evaluation protocol, we report AP, AP 50 (OKS threshold = 0.5), AP M (medium-scale objects), AP L (large-scale objects), and Average Recall (AR), computed over OKS thresholds ranging from 0.50 to 0.95 with a step size of 0.05.

4.2. Results on the MPII Validation Dataset

We evaluate the proposed PMNet on the MPII validation dataset and compare it with a wide range of state-of-the-art human pose estimation methods. The quantitative results are summarized in Table 1.
Table 1. Comparison of PCKh@0.5 (%) on the MPII validation set. The best results in each column are shown in bold.
As shown in Table 1, PMNet achieves an overall PCKh@0.5 score of 92.42%, outperforming existing state-of-the-art approaches. Notably, PMNet consistently improves localization accuracy across most keypoints, particularly for challenging joints such as knees and ankles, which are prone to frequent occlusion and large articulation in real-world scenarios. This improvement indicates that the proposed parallel modeling and dynamic feature fusion strategies effectively enhance structural reasoning for lower-body joints.
To further assess the generalizability of PMNet across different backbone architectures, we additionally evaluate the proposed framework using ResNet-50 as the feature extractor. Despite the limited multi-scale representation capability of ResNet-50 compared to HRNet, PMNet maintains competitive performance and significantly outperforms the vanilla ResNet-50 baseline. These results demonstrate that PMNet is largely backbone-agnostic and can effectively improve pose estimation accuracy even when applied to feature extractors with weaker multi-scale modeling capacity.
Overall, the results on the MPII validation dataset validate the effectiveness and robustness of PMNet, highlighting its strong ability to model both explicit structural relationships and implicit semantic dependencies in human pose estimation.

4.3. Results on the MSCOCO Dataset

We further evaluate the proposed PMNet on the MSCOCO val2017 dataset to assess its effectiveness and generalization capability on large-scale, multi-person pose estimation benchmarks. Quantitative comparisons with state-of-the-art methods are reported in Table 2.
Table 2. Comparison of pose estimation performance on the MSCOCO val2017 dataset. Best results in each column are highlighted in bold.
As shown in Table 2, integrating PMNet with a strong baseline significantly improves pose estimation performance. Specifically, when applied to HRNet-W48, PMNet achieves an AP of 0.773, outperforming the original HRNet baseline by 2.9% in terms of average precision. Similar performance gains are observed across multiple evaluation metrics, including AP 50 , AP 75 , AP M , and AP L , demonstrating that PMNet consistently enhances localization accuracy across different object scales and keypoint difficulty levels.
To further verify the backbone-agnostic property of PMNet, we conduct additional experiments using ResNet-50 as the feature extractor. Although the vanilla ResNet-50 baseline exhibits limited performance due to its lack of multi-scale representations, the incorporation of PMNet results in a substantial improvement, raising AP from 0.370 to 0.743. This dramatic gain highlights the effectiveness of the proposed parallel modeling and dynamic feature fusion mechanisms, even when applied to comparatively weaker backbone networks.
Overall, the results on the MSCOCO dataset indicate that PMNet provides consistent performance improvements when integrated with conventional heatmap-based backbone architectures, demonstrating its effectiveness as a lightweight refinement module. While large-scale transformer-based models such as ViTPose may achieve higher absolute performance due to extensive pretraining and model capacity, our approach focuses on enhancing structural robustness and reducing coordinate bias within a flexible and computationally efficient framework. These findings highlight PMNet’s adaptability and practical value in real-world pose estimation scenarios.

4.4. Ablation Experiment

4.4.1. Feature Fusion Approach

To effectively integrate complementary information from the explicit and implicit modeling branches, PMNet incorporates a nonlinear feature fusion strategy. In this subsection, we investigate the impact of different fusion mechanisms on pose estimation performance. Specifically, two nonlinear fusion variants are evaluated on the MPII validation set, as summarized in Table 3.
Table 3. Ablation study on different feature fusion strategies evaluated on the MPII validation set. Best results in each column are highlighted in bold.
Variant (a) employs Nonlinear Channel Dynamic Weight Fusion, where adaptive weights are learned along the channel dimension to re-calibrate feature importance. Variant (b) adopts Nonlinear Spatial Dynamic Weight Fusion, which assigns adaptive weights across spatial locations.
As shown in Table 3, channel-based nonlinear fusion consistently outperforms spatial-based fusion across most keypoints and achieves a higher overall PCKh score (92.16% vs. 92.05%). This result indicates that dynamically modeling inter-channel relationships is more effective than spatial re-weighting when integrating multi-branch features.
A possible explanation is that channel-wise fusion emphasizes semantic feature dimensions rather than precise spatial locations, making it more robust to spatial misalignment caused by occlusion, articulation, or scale variation. By adaptively redistributing attention across channels, the network can better capture high-level nonlinear dependencies embedded in different feature streams. In contrast, spatial fusion relies more heavily on accurate localization, which may be less reliable under challenging conditions.
Overall, these results demonstrate that nonlinear channel dynamic weight fusion provides superior flexibility and robustness for multi-branch feature integration, and it is therefore adopted as the default fusion strategy in PMNet.

4.4.2. PMNet Layers

In designing the PMNet architecture, we hypothesized that a single PMNet layer might be insufficient to fully refine keypoint features and capture the complex structural dependencies required for accurate human pose estimation. To enhance the network’s expressiveness, we implemented a layer stacking strategy, progressively adding multiple PMNet layers. The optimal number of layers was empirically determined through ablation experiments aimed at achieving a trade-off between model accuracy, computational efficiency, and overfitting prevention.
As reported in Table 4, stacking four PMNet layers yields the highest validation performance. A notable finding from this experiment is that architectures with an even number of PMNet layers consistently outperform those with an odd number. We hypothesize that this behavior may stem from the structural symmetry introduced by even-layer configurations, which could facilitate more balanced information flow and gradient propagation, thereby improving learning stability and representational quality.
Table 4. Experimental results of ablation by the number of PMNet layers evaluated on the MPII validation set. Best results in each column are highlighted in bold.
Conversely, odd-layered networks exhibit more erratic performance fluctuations, potentially due to imbalanced information propagation paths or asymmetric interactions between layers, which may disrupt the learning dynamics. This insight opens an intriguing direction for future work, suggesting that architectural symmetry may play a more critical role in neural network performance than previously considered.
To further explore this phenomenon, we extended the ablation study by testing a six-layer configuration. Interestingly, the performance degraded relative to the four-layer model, indicating that excessive depth can introduce overfitting, particularly in the absence of additional regularization mechanisms. This result underscores the importance of layer-depth calibration in network design and highlights the need to balance expressiveness with generalization capacity.

4.4.3. Multiple Attention Mechanisms

The primary strength of the multi-head attention mechanism lies in its capacity to improve a model’s expressive power by allowing it to attend to multiple representation subspaces concurrently. By introducing multiple attention heads, the model can focus on different parts of the input sequence in parallel, thereby capturing diverse types of relationships and feature dependencies. This multi-perspective processing facilitates richer feature extraction, enhances representational flexibility, and often contributes to improved generalization.
Furthermore, multi-head attention enables the model to learn representations across varied levels of abstraction, supporting the capture of both local and global dependencies. However, the experimental results presented in Table 5 reveal that, contrary to expectations, incorporating multi-head attention into the PMNet architecture does not lead to performance improvement.
Table 5. Experimental results of ablation by the number of attention heads evaluated on the MPII validation set. Best results in each column are highlighted in bold.
This counterintuitive outcome may be attributed to the data sparsity introduced by PMNet’s dual-path feature refinement process, which includes both explicit and implicit modeling. These processes often generate sparse feature maps with a significant proportion of zero or near-zero activations. As a result, the attention heads in the multi-head mechanism may struggle to assign meaningful weights, impairing their ability to learn discriminative patterns. This sparsity likely reduces the effectiveness of multi-head attention in the context of PMNet, where attention computation becomes less informative.
Conversely, this finding reinforces the strength of the PMNet framework itself, particularly its effectiveness in refining keypoint responses through specialized architectural design. Rather than benefiting from additional complexity introduced by multi-head structures, PMNet appears to achieve superior performance by preserving focus through a targeted single-head attention strategy, which is better aligned with the structured nature of keypoint prediction.
This observation highlights the importance of contextualizing attention mechanisms within the specific data distributions and structural characteristics of the task. It also suggests that for tasks involving sparse and structured outputs—such as human pose estimation—simpler or more focused attention mechanisms may outperform more generalized multi-head variants.

4.4.4. Ablation Study on Error Compensation Decoding

We further evaluate the effectiveness of the proposed error-compensated decoding method, and the corresponding experimental results are summarized in Table 6. The analysis indicates that the model achieves optimal performance when the compensation factor Δ = 1 , confirming the benefit of introducing an appropriate correction term during heatmap decoding.
Table 6. Experimental results of ablation by error compensation factor Δ on the MPII validation set. Best results in each column are highlighted in bold.
Consistent with the observations reported by [8], our results show that configurations with Δ > 0 consistently outperform those without compensation. This phenomenon supports the hypothesis that systematic localization errors tend to be biased toward the lower-right direction. Such bias is commonly attributed to asymmetric pooling operations combined with padding effects, which introduce directional shifts in predicted keypoint locations during downsampling.
However, in contrast to previous decoding-only approaches, our method incorporates the PMNet refinement module prior to decoding, which substantially mitigates these systematic deviations. By progressively refining keypoint responses through explicit structural modeling and implicit contextual reasoning, PMNet improves the symmetry and stability of the predicted heatmap distributions. As a result, the optimal compensation factor is reduced to Δ = 1 , indicating that the majority of spatial bias has already been corrected at the feature refinement stage.
Compared with prior decoding-only frameworks where larger compensation factors are often required, the reduced optimal Δ observed in PMNet indicates that structural refinement alleviates bias at the representation level before decoding.
This observation demonstrates that PMNet not only enhances keypoint localization accuracy but also alleviates structural inconsistencies introduced by network architectures, thereby improving the robustness of the overall pose estimation pipeline.

4.5. Qualitative Analysis

4.5.1. Comparison Results on the MPII Dataset

We present qualitative visualizations of the proposed PMNet on the MPII validation dataset, as shown in Figure 9. These examples highlight the effectiveness of PMNet in refining keypoint localization under challenging conditions, including complex body articulations, severe occlusions, and ambiguous limb configurations.
As illustrated in Figure 9, PMNet produces more coherent and anatomically consistent pose estimations compared with baseline methods. In cases of partial or heavy occlusion, PMNet is able to infer plausible joint locations by leveraging explicit structural modeling and implicit contextual reasoning, resulting in smoother joint transitions and reduced localization errors. In contrast, baseline predictions often exhibit missing joints, misaligned limbs, or structurally implausible poses.
These qualitative results further demonstrate that PMNet not only improves keypoint accuracy but also enhances the semantic consistency of the predicted poses. By refining backbone features through parallel modeling and adaptive fusion, PMNet generates more reliable and interpretable pose representations, even in visually cluttered or occluded scenes.
Overall, the visual comparisons corroborate the quantitative improvements reported in Section 4.2 and Section 4.4, confirming that PMNet effectively mitigates spatial ambiguity and enhances robustness in real-world human pose estimation scenarios.

4.5.2. Output Distribution Visualization

We further visualize the refined heatmap distributions produced by PMNet on the MPII validation dataset, as shown in Figure 10. The visual results indicate that the predicted heatmaps after PMNet refinement closely approximate Gaussian-like distributions centered at the ground-truth keypoint locations. Compared with unrefined outputs, the refined heatmaps exhibit a higher signal-to-noise ratio (SNR), characterized by concentrated peak responses and suppressed background activations. This increased concentration corresponds to a substantial reduction in output entropy, which explains the improved stability and effectiveness of error-compensated decoding observed in our experiments.
Figure 10. Visualization of refined heatmap output distributions on the MPII validation dataset. From left to right, we show the input image, baseline heatmap prediction, PMNet-refined heatmap, and corresponding 3D response surfaces. Color intensity indicates activation magnitude, where warmer colors (e.g., red/yellow) represent higher response confidence. The heatmaps generated by PMNet exhibit Gaussian-like responses with high signal-to-noise ratio, characterized by sharp peaks around ground-truth keypoints and reduced background noise. Such distributions are favorable for accurate and stable coordinate decoding.
This structured output distribution enhances both the interpretability and reliability of keypoint predictions. In particular, the Gaussian-shaped response ensures that local maxima are well-defined and symmetric, which is highly favorable for coordinate decoding. As discussed in Section 3.6 and validated in Section 4.4.4, such distributions are especially well suited for error-compensated decoding, where systematic localization bias can be effectively corrected through statistical estimation.
Moreover, the improved distributional properties suggest that PMNet not only refines keypoint accuracy at the spatial level but also reshapes the statistical characteristics of the output space. By producing smoother and more stable heatmaps, PMNet facilitates downstream processing and contributes to the overall robustness of the pose estimation pipeline.

4.5.3. Visualization Results on the MPII Validation Dataset

We further present qualitative visualization results on the MPII validation dataset to demonstrate the effectiveness of the proposed PMNet, as shown in Figure 11. These examples illustrate that PMNet produces accurate and anatomically consistent pose predictions across a wide range of challenging scenarios.
Figure 11. Visualization results on the MPII validation dataset. PMNet produces accurate and structurally consistent pose predictions under complex poses and occlusion conditions, demonstrating strong robustness and generalization capability.
As observed in Figure 11, PMNet maintains reliable keypoint localization under complex body articulations, partial occlusions, and unusual viewing angles. Benefiting from explicit structural modeling and implicit contextual reasoning, the proposed method is able to infer plausible joint positions even when visual evidence is weak or partially missing. In contrast, baseline predictions often suffer from misaligned limbs or missing keypoints in such cases.
These qualitative results provide further evidence that PMNet effectively enhances the robustness and stability of pose estimation, complementing the quantitative improvements reported on the MPII dataset.

4.5.4. Visualization Results on the MSCOCO val2017 Dataset

Since this work focuses on single-person human pose estimation, pre-obtained human detection results are used as model inputs, following the standard evaluation protocol adopted in previous studies. The qualitative visualization results on the MSCOCO val2017 dataset are presented in Figure 12.
Figure 12. Qualitative visualization results on the MSCOCO validation dataset. Each example shows the input image with predicted keypoints overlaid. PMNet produces accurate and structurally consistent pose estimations under complex poses and occlusion conditions, demonstrating strong robustness and generalization capability.
Compared with MPII, the MSCOCO dataset contains more diverse scenes, heavier occlusions, and more complex human poses. As shown in Figure 12, PMNet consistently delivers accurate and coherent pose estimations despite these challenges. The model successfully preserves limb continuity and joint consistency in crowded or visually cluttered scenes, highlighting its strong adaptability to real-world conditions.
These results demonstrate that the proposed PMNet generalizes well across datasets with different characteristics and confirms its effectiveness in handling complex poses and occlusion scenarios commonly encountered in practical applications.

5. Conclusions

5.1. Discussion

Two-dimensional human pose estimation plays a critical role in a wide range of applications, including traffic safety, human activity monitoring, and security systems. In this paper, we propose a novel Pose Refinement Network (PMNet) that significantly enhances the accuracy and robustness of human pose estimation. The proposed approach effectively addresses two major challenges in pose estimation, namely occlusion and background interference. Specifically, explicit modeling is employed to leverage local structural information for mitigating occlusion, while implicit modeling integrates non-local semantic context to suppress background noise. The complementary combination of these two modeling strategies enables more precise and robust keypoint localization.
The primary contributions of this work can be summarized as follows. First, we introduce a Parallel Modeling Framework, which adopts a dual-branch architecture to explicitly model keypoint correlations using Graph Neural Networks while implicitly capturing long-range dependencies via self-attention mechanisms. This design enables robust spatial reasoning and significantly improves pose estimation performance. Second, we propose a Dynamic Feature Fusion Module, which incorporates a learnable fusion strategy to integrate features from both branches, effectively alleviating conflicts between explicit and implicit modeling and promoting a unified pose representation. Third, through Graph-Based Structural Modeling, the explicit branch introduces keypoint-level graphs to adaptively learn topological relationships among joints, enhancing localization accuracy under occlusion and complex pose configurations. Finally, we incorporate an Enhanced Decoding Strategy with Error Compensation, which reduces coordinate bias in heatmap-based predictions and leads to notable improvements in keypoint accuracy.
The effectiveness of PMNet is validated through extensive experiments on the MPII and MSCOCO datasets. Our method achieves a PCKh@0.5 score of 92.42% on the MPII validation set and an AP of 77.3% on the MSCOCO validation set, demonstrating performance that is comparable to or surpasses existing state-of-the-art methods. In addition, qualitative visualizations further illustrate that PMNet improves the signal-to-noise ratio of predicted heatmaps and refines output distributions, resulting in more accurate and stable keypoint localization.
Despite these advancements, several limitations warrant further investigation. First, the current model configuration assumes equal likelihood for incorporating target entities, which may constrain the effectiveness of sensitivity analysis. To more accurately assess feature relevance, future work will explore sensitivity analysis techniques and model calibration strategies based on feature contribution analysis, thereby improving interpretability. Second, technical limitations such as potential bias in training data—including variations in pose representation and occlusion patterns—may affect generalization performance. Although PMNet demonstrates robustness to noise, further integration of advanced noise suppression techniques could enhance its performance in real-world scenarios. Addressing these challenges constitutes an important direction for future research. Overall, PMNet can be interpreted as an entropy-aware pose refinement framework, where parallel modeling, attention-based filtering, and adaptive fusion jointly reduce uncertainty and improve information efficiency in keypoint estimation.

5.2. Future Research

Future research will focus on further optimizing PMNet across several dimensions. First, we plan to investigate advanced training strategies to accelerate convergence and explore hardware-aware optimization techniques to improve inference efficiency, enabling real-time deployment in practical applications.
In addition, we aim to incorporate explicit anatomical priors into the model to provide more informative structural constraints, thereby enhancing both interpretability and estimation accuracy. Integrating anatomical knowledge will allow PMNet to better capture human body structures and inter-joint relationships, particularly in complex or highly occluded scenarios.
Furthermore, sensitivity analysis and feature selection methods will be systematically integrated to better understand the contribution of individual features, facilitating targeted model refinement and performance improvement. We also plan to enhance the model’s adaptability to varying input resolutions, enabling PMNet to operate effectively across a wider range of application settings.
Through continued research and development, we expect PMNet to achieve further improvements in accuracy, robustness, and efficiency, providing strong support for both academic research and real-world human pose estimation applications.

Author Contributions

Conceptualization, J.Z. and C.S.; Methodology, J.Z. and D.Y. and C.H.; Software, C.H.; Formal analysis, J.Z. and C.H.; Investigation, D.Y.; Writing—original draft preparation, J.Z.; Writing—review and editing, J.Z. and D.Y. and C.S.; Supervision, D.Y. and Y.X.; Project administration, D.Y. and Y.X.; Funding acquisition, C.S. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by the Central Basic Business Research Funding Project entitled “Research and Application of Risk Classification Technology for Product Quality and Safety Based on Data-Driven Methods” (Grant No. 552023Y-10371).

Data Availability Statement

The data used in this study are publicly available datasets. The MPII Human Pose Dataset is available at http://human-pose.mpi-inf.mpg.de/. The MSCOCO dataset is available at https://cocodataset.org/. No new datasets were generated during the current study.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Jiao, Y.; Yao, H.; Xu, C. PEN: Pose-Embedding Network for Pedestrian Detection. IEEE Trans. Circuits Syst. Video Technol. 2021, 31, 1150–1162. [Google Scholar] [CrossRef] [Scilit]
  2. Zhou, Y.; Yang, J.; Huang, H.; Xie, L. AdaPose: Toward Cross-Site Device-Free Human Pose Estimation with Commodity WiFi. IEEE Internet Things J. 2024, 11, 40255–40267. [Google Scholar] [CrossRef] [Scilit]
  3. Mohamed, A.; Qian, K.; Elhoseiny, M.; Claudel, C. Social-STGCNN: A Social Spatio-Temporal Graph Convolutional Neural Network for Human Trajectory Prediction. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 13–19 June 2020; pp. 14412–14420. [Google Scholar]
  4. Xiao, B.; Wu, H.; Wei, Y. Simple Baselines for Human Pose Estimation and Tracking. In Proceedings of the European Conference on Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 466–481. [Google Scholar]
  5. Zhang, F.; Zhu, X.; Dai, H.; Ye, M.; Zhu, C. Distribution-Aware Coordinate Representation for Human Pose Estimation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 13–19 June 2020; pp. 7091–7100. [Google Scholar]
  6. Li, J.; Bian, S.; Zeng, A.; Wang, C.; Pang, B.; Liu, W.; Lu, C. Human Pose Regression with Residual Log-Likelihood Estimation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, QC, Canada, 10–17 October 2021; pp. 11005–11014. [Google Scholar]
  7. Newell, A.; Yang, K.; Deng, J. Stacked Hourglass Networks for Human Pose Estimation. In Proceedings of the European Conference on Computer Vision, Amsterdam, The Netherlands, 11–14 October 2016; pp. 483–499. [Google Scholar]
  8. Yang, F.; Song, Z.; Xiao, Z.; Mo, Y.; Chen, Y.; Pan, Z.; Zhang, M.; Zhang, Y.; Qian, B.; Jin, W. Error Compensation Heatmap Decoding for Human Pose Estimation. IEEE Access 2021, 9, 114514–114522. [Google Scholar] [CrossRef] [Scilit]
  9. Gao, Z.; Chen, J.; Liu, Y.; Jin, Y.; Tian, D. A Systematic Survey on Human Pose Estimation. Artif. Intell. Rev. 2025, 58, 68. [Google Scholar] [CrossRef] [Scilit]
  10. Hong, X.; Zhang, L.; Yu, X.; Xie, W.; Xie, Y. MBA-Net: Multi-Branch Attention Network for Occluded Person Re-Identification. Multimed. Tools Appl. 2023, 83, 6393–6412. [Google Scholar] [CrossRef] [Scilit]
  11. Jiang, Z.; Rahmani, H.; Black, S.; Williams, B.M. A Probabilistic Attention Model with Occlusion-Aware Texture Regression for 3D Hand Reconstruction. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Vancouver, BC, Canada, 17–24 June 2023; pp. 758–767. [Google Scholar]
  12. Efros, A.A.; Berg, A.C.; Mori, G.; Malik, J. Recognizing Action at a Distance. In Proceedings of the IEEE International Conference on Computer Vision, Nice, France, 13–16 October 2003; pp. 726–733. [Google Scholar]
  13. Felzenszwalb, P.F.; Huttenlocher, D.P. Pictorial Structures for Object Recognition. Int. J. Comput. Vis. 2005, 61, 55–79. [Google Scholar] [CrossRef] [Scilit]
  14. Toshev, A.; Szegedy, C. DeepPose: Human Pose Estimation via Deep Neural Networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Columbus, OH, USA, 23–28 June 2014; pp. 1653–1660. [Google Scholar]
  15. Rogez, G.; Weinzaepfel, P.; Schmid, C. LCR-Net: Localization-Classification-Regression for Human Pose. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Honolulu, HI, USA, 21–26 July 2017; pp. 1216–1224. [Google Scholar]
  16. Rogez, G.; Weinzaepfel, P.; Schmid, C. LCR-Net++: Multi-Person 2D and 3D Pose Detection in Natural Images. IEEE Trans. Pattern Anal. Mach. Intell. 2020, 42, 1146–1161. [Google Scholar] [CrossRef] [Scilit]
  17. Pavllo, D.; Feichtenhofer, C.; Grangier, D.; Auli, M. 3D Human Pose Estimation in Video with Temporal Convolutions and Semi-Supervised Training. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Long Beach, CA, USA, 15–20 June 2019; pp. 7745–7754. [Google Scholar]
  18. Zheng, C.; Zhu, S.; Mendieta, M.; Yang, T.; Chen, C.; Ding, Z. 3D Human Pose Estimation with Spatial and Temporal Transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, QC, Canada, 10–17 October 2021; pp. 11636–11645. [Google Scholar]
  19. Wang, L.; Chen, Y.; Guo, Z.; Qian, K.; Lin, M.; Li, H.; Ren, J.S. Generalizing Monocular 3D Human Pose Estimation in the Wild. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Seoul, Republic of Korea, 27–28 October 2019; pp. 4024–4033. [Google Scholar]
  20. Tompson, J.; Jain, A.; LeCun, Y.; Bregler, C. Joint Training of a Convolutional Network and a Graphical Model for Human Pose Estimation. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS 2014), Montreal, QC, Canada, 8–13 December 2014; pp. 1799–1807. [Google Scholar]
  21. Cai, Y.; Wang, Z.; Luo, Z.; Yin, B.; Du, A.; Wang, H.; Zhang, X.; Zhou, X.; Zhou, E.; Sun, J. Learning Delicate Local Representations for Multi-Person Pose Estimation. In Proceedings of the European Conference on Computer Vision, Glasgow, UK, 23–28 August 2020; pp. 455–472. [Google Scholar]
  22. Chu, X.; Yang, W.; Ouyang, W.; Ma, C.; Yuille, A.L.; Wang, X. Multi-Context Attention for Human Pose Estimation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Honolulu, HI, USA, 21–26 July 2017; pp. 5669–5678. [Google Scholar]
  23. Ke, L.; Chang, M.C.; Qi, H.; Lyu, S. Multi-Scale Structure-Aware Network for Human Pose Estimation. In Proceedings of the European Conference on Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 731–746. [Google Scholar]
  24. Yang, W.; Li, S.; Ouyang, W.; Li, H.; Wang, X. Learning Feature Pyramids for Human Pose Estimation. In Proceedings of the IEEE International Conference on Computer Vision, Venice, Italy, 22–29 October 2017; pp. 1290–1299. [Google Scholar]
  25. Chen, Y.; Wang, Z.; Peng, Y.; Zhang, Z.; Yu, G.; Sun, J. Cascaded Pyramid Network for Multi-Person Pose Estimation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–23 June 2018; pp. 7103–7112. [Google Scholar]
  26. He, K.; Zhang, X.; Ren, S.; Sun, J. Deep Residual Learning for Image Recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Las Vegas, NV, USA, 27–30 June 2016; pp. 770–778. [Google Scholar]
  27. Wang, J.; Sun, K.; Cheng, T.; Jiang, B.; Deng, C.; Zhao, Y.; Liu, D.; Mu, Y.; Tan, M.; Wang, X.; et al. Deep High-Resolution Representation Learning for Visual Recognition. IEEE Trans. Pattern Anal. Mach. Intell. 2021, 43, 3349–3364. [Google Scholar] [CrossRef] [Scilit]
  28. Zheng, C.; Wu, W.; Chen, C.; Yang, T.; Zhu, S.; Shen, J.; Kehtarnavaz, N.; Shah, M. Deep Learning-Based Human Pose Estimation: A Survey. ACM Comput. Surv. 2024, 56, 1–37. [Google Scholar] [CrossRef] [Scilit]
  29. Zhang, Z.; Wan, L.; Xu, W.; Wang, S. Low-Resolution Human Pose Estimation and Action Recognition via Pose-Driven Super-Resolution Reconstruction. Mach. Learn. 2025, 114, 135. [Google Scholar] [CrossRef] [Scilit]
  30. Bai, X.; Wei, X.; Wang, Z.; Zhang, M. CONet: Crowd and Occlusion-Aware Network for Occluded Human Pose Estimation. Neural Netw. 2024, 172, 106109. [Google Scholar] [CrossRef] [Scilit]
  31. Li, M.; Wang, Y.; Hu, H.; Zhao, X. InferTrans: Hierarchical Structural Fusion Transformer for Crowded Human Pose Estimation. Inf. Fusion 2025, 117, 102878. [Google Scholar] [CrossRef] [Scilit]
  32. Wang, H.; Liu, J.; Tang, J.; Wu, G.; Xu, B.; Chou, Y.; Wang, Y. GTPT: Group-Based Token Pruning Transformer for Efficient Human Pose Estimation. In Proceedings of the European Conference on Computer Vision, Milan, Italy, 29 September–4 October 2024; pp. 213–230. [Google Scholar]
  33. Chen, Z.; Dai, J.; Pan, J.; Zhou, F. Diffusion Model with Temporal Constraint for 3D Human Pose Estimation. Vis. Comput. 2025, 41, 5961–5977. [Google Scholar] [CrossRef] [Scilit]
  34. Bao, W.; Xiang, X. DDBMHT: A Diffusion-Based Double-Branch Multi-Hypothesis Transformer for 3D Human Pose Estimation in Video. In Proceedings of the International Conference on Electronic Technology and Information Science, Hangzhou, China, 17–19 May 2024; pp. 35–39. [Google Scholar]
  35. Feng, Y.; Dai, S.; Zhang, Q.; Wang, Z.; Zhang, X.; Zhou, Y. M3Pose: Multi-Person 3D Pose Estimation Using Sparse Millimeter-Wave Radar Point Clouds. In Proceedings of the Chinese Conference on Pattern Recognition and Computer Vision, Urumqi, China, 18–20 October 2024; pp. 504–517. [Google Scholar]
  36. Al, M.A.; Shi, X.; Mondher, B.; Ohtsuki, T. mmGAT: Pose Estimation by Graph Attention with Mutual Features from mmWave Radar Point Cloud. In Proceedings of the IEEE International Conference on Communications, Denver, CO, USA, 9–13 June 2024; pp. 2161–2166. [Google Scholar]
  37. Zhao, L.; Xu, J.; Zhang, S.; Gong, C.; Yang, J.; Gao, X. Perceiving Heavily Occluded Human Poses by Assigning Unbiased Score. Inf. Sci. 2020, 537, 284–301. [Google Scholar] [CrossRef] [Scilit]
  38. Ying, J.J.C.; Chen, Y.H.; Zhang, J. Few-Shot Learning-Based Human Pose Estimation Model. Inf. Sci. 2025, 717, 122320. [Google Scholar] [CrossRef] [Scilit]
  39. Reddy, N.D.; Vo, M.; Narasimhan, S.G. Occlusion-Net: 2D/3D Occluded Keypoint Localization Using Graph Networks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Long Beach, CA, USA, 15–20 June 2019; pp. 7318–7327. [Google Scholar]
  40. Bin, Y.; Chen, Z.M.; Wei, X.S.; Chen, X.; Gao, C.; Sang, N. Structure-Aware Human Pose Estimation with Graph Convolutional Networks. Pattern Recognit. 2020, 106, 107410. [Google Scholar] [CrossRef] [Scilit]
  41. Tian, L.; Wang, P.; Liang, G.; Shen, C. An Adversarial Human Pose Estimation Network Injected with Graph Structure. Pattern Recognit. 2021, 115, 107863. [Google Scholar] [CrossRef] [Scilit]
  42. Ke, L.; Tai, Y.W.; Tang, C.K. Deep Occlusion-Aware Instance Segmentation with Overlapping BiLayers. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Nashville, TN, USA, 20–25 June 2021; pp. 4018–4027. [Google Scholar]
  43. Jiang, Y.; Ding, W.; Li, H.; Chi, Z. Multi-Person Pose Tracking with Sparse Key-Point Flow Estimation. IEEE Trans. Image Process. 2024, 33, 3590–3605. [Google Scholar] [CrossRef] [Scilit]
  44. Chen, A.; Wu, C.; Leng, C. Hourglass-GCN for 3D Human Pose Estimation Using Skeleton Structure and View Correlation. Comput. Mater. Contin. 2025, 82, 173–191. [Google Scholar] [CrossRef] [Scilit]
  45. Hou, Y.; Wang, C.; Peng, H.; Feng, T.; Li, H.; Oh, Y.P. A Robust Framework for 3D Human Pose Estimation Using Semantic Graph Convolution, Criss-Cross Attention and Transformer Encoder. J. Circuits Syst. Comput. 2025, 34, 2550252. [Google Scholar] [CrossRef] [Scilit]
  46. Wei, S.E.; Ramakrishna, V.; Kanade, T.; Sheikh, Y. Convolutional Pose Machines. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Las Vegas, NV, USA, 27–30 June 2016; pp. 4724–4732. [Google Scholar]
  47. Xu, D.; Wang, T.; Hao, F.; Cheng, J. Global-Local Interplay with Transformer and GCN for 3D Human Pose Estimation. Procedia Comput. Sci. 2025, 271, 169–175. [Google Scholar] [CrossRef] [Scilit]
  48. Ye, M.; Yang, L.; Zhu, H.; Zheng, Z.; Wang, X.; Lo, Y. Dual-stream Transformer-GCN Model with Contextualized Representations Learning for Monocular 3D Human Pose Estimation. arXiv 2025, arXiv:2504.01764. [Google Scholar]
  49. Woo, S.; Park, J.; Lee, J.Y.; Kweon, I.S. CBAM: Convolutional Block Attention Module. In Proceedings of the European Conference on Computer Vision, Munich, Germany, 8–14 September 2018; pp. 3–19. [Google Scholar]
  50. Huang, Z.; Wang, X.; Huang, L.; Huang, C.; Wang, Y.; Liu, W. CCNet: Criss-Cross Attention for Semantic Segmentation. IEEE Trans. Pattern Anal. Mach. Intell. 2023, 45, 6896–6908. [Google Scholar] [CrossRef] [Scilit]
  51. Yang, C.; Tkach, A.; Hampali, S.; Zhang, L.; Crowley, E.J.; Keskin, C. EgoPoseFormer: A Simple Baseline for Stereo Egocentric 3D Human Pose Estimation. In Proceedings of the European Conference on Computer Vision (ECCV), Milan, Italy, 29 September–4 October 2024; pp. 401–417. [Google Scholar]
  52. Li, Y.; Zhang, S.; Wang, Z.; Yang, S.; Yang, W.; Xia, S.T.; Zhou, E. TokenPose: Learning Keypoint Tokens for Human Pose Estimation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, QC, Canada, 10–17 October 2021; pp. 11293–11302. [Google Scholar]
  53. Wang, X.; Tong, J.; Wang, R. Attention Refined Network for Human Pose Estimation. Neural Process. Lett. 2021, 53, 2853–2872. [Google Scholar] [CrossRef] [Scilit]
  54. Liu, F.H.; Zhang, X.; Wang, H.Y.; Feng, J. Context-Aware Superpixel and Bilateral Entropy-Image Coherence Induces Less Entropy. Entropy 2020, 22, 20. [Google Scholar] [CrossRef] [Scilit]
  55. Wang, X.Y.; Hu, R.Y.; Xue, C.Q. Enhancing User Perception of Reliability in Computer Vision: Uncertainty Visualization for Probability Distributions. Symmetry 2024, 16, 986. [Google Scholar] [CrossRef] [Scilit]
  56. Rabiee, S.; Biswas, J. Introspective Perception for Mobile Robots. Artif. Intell. 2023, 324, 103999. [Google Scholar] [CrossRef] [Scilit]
  57. Ferreira, R.S.; Guérin, J.; Delmas, K.; Guiochet, J.; Waeselynck, H. Safety Monitoring of Machine Learning Perception Functions: A Survey. Comput. Intell. 2025, 41, e70032. [Google Scholar] [CrossRef] [Scilit]
  58. Gasperini, S.; Haug, J.; Mahani, M.A.N.; Marcos-Ramiro, A.; Navab, N.; Busam, B.; Tombari, F. CertainNet: Sampling-Free Uncertainty Estimation for Object Detection. IEEE Robot. Autom. Lett. 2022, 7, 698–705. [Google Scholar] [CrossRef] [Scilit]
  59. Su, S.B.; Han, S.Y.; Li, Y.M.; Zhang, Z.L.; Feng, C.; Ding, C.W.; Miao, F. Collaborative Multi-Object Tracking With Conformal Uncertainty Propagation. IEEE Robot. Autom. Lett. 2024, 9, 3323–3330. [Google Scholar] [CrossRef] [Scilit]
  60. Zhao, Z.B.; Qi, H.Y.; Fan, X.Q.; Xu, G.Z.; Qi, Y.C.; Zhai, Y.J.; Zhang, K. Image Representation Method Based on Relative Layer Entropy for Insulator Recognition. Entropy 2020, 22, 419. [Google Scholar] [CrossRef] [Scilit]
  61. Liu, C.H.; Chen, H.R.; Deng, L.; Guo, C.T.; Lu, X.T.; Yu, H.; Zhu, L.Q.; Dong, M.L. Modality Specific Infrared and Visible Image Fusion Based on Multi-Scale Rich Feature Representation Under Low-Light Environment. Infrared Phys. Technol. 2024, 140, 105351. [Google Scholar] [CrossRef] [Scilit]
  62. Zhu, G.L.; Fei, H.X.; Hong, J.K.; Luo, Y.Y.; Long, J. An Information-Reserved and Deviation-Controllable Binary Neural Network for Object Detection. Mathematics 2023, 11, 62. [Google Scholar] [CrossRef] [Scilit]
  63. Li, H.; Yao, H.; Hou, Y. HPNet: Hybrid Parallel Network for Human Pose Estimation. Sensors 2023, 23, 4425. [Google Scholar] [CrossRef] [Scilit]
  64. Bruna, J.; Zaremba, W.; Szlam, A.; LeCun, Y. Spectral Networks and Locally Connected Networks on Graphs. arXiv 2014, arXiv:1312.6203. [Google Scholar] [CrossRef] [Scilit]
  65. Defferrard, M.; Bresson, X.; Vandergheynst, P. Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering. arXiv 2016, arXiv:1606.09375. [Google Scholar]
  66. Ding, X.; Zhang, X.; Han, J.; Ding, G. Scaling Up Your Kernels to 31×31: Revisiting Large Kernel Design in CNNs. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, New Orleans, LA, USA, 18–24 June 2022; pp. 11953–11965. [Google Scholar]
  67. Yang, S.; Quan, Z.; Nie, M.; Yang, W. TransPose: Keypoint Localization via Transformer. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, QC, Canada, 10–17 October 2021; pp. 11782–11792. [Google Scholar]
  68. Andriluka, M.; Pishchulin, L.; Gehler, P.; Schiele, B. 2D Human Pose Estimation: New Benchmark and State-of-the-Art Analysis. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Columbus, OH, USA, 23–28 June 2014; pp. 3686–3693. [Google Scholar]
  69. Lin, T.Y.; Maire, M.; Belongie, S.; Hays, J.; Perona, P.; Ramanan, D.; Dollár, P.; Zitnick, C.L. Microsoft COCO: Common Objects in Context. In Proceedings of the European Conference on Computer Vision, Zurich, Switzerland, 6–12 September 2014; pp. 740–755. [Google Scholar]
  70. Yan, S.; Xiong, Y.; Lin, D. Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recognition. In Proceedings of the AAAI Conference on Artificial Intelligence, New Orleans, LA, USA, 2–7 February 2018; pp. 7444–7452. [Google Scholar]
  71. Bulat, A.; Tzimiropoulos, G. Human Pose Estimation via Convolutional Part Heatmap Regression. In Proceedings of the European Conference on Computer Vision, Amsterdam, The Netherlands, 11–14 October 2016; pp. 717–732. [Google Scholar]
  72. Tang, W.; Yu, P.; Wu, Y. Deeply Learned Compositional Models for Human Pose Estimation. In Proceedings of the European Conference on Computer Vision, Munich, Germany, 8–14 September 2018; pp. 197–214. [Google Scholar]
  73. Zheng, G.; Wang, S.; Yang, B. Hierarchical Structure Correlation Inference for Pose Estimation. Neurocomputing 2020, 404, 186–197. [Google Scholar] [CrossRef] [Scilit]
  74. Wang, R.; Geng, F.; Wang, X. MTPose: Human Pose Estimation with High-Resolution Multi-Scale Transformers. Neural Process. Lett. 2022, 54, 3941–3964. [Google Scholar] [CrossRef] [Scilit]
  75. Zou, X.; Bi, X.; Yu, C. Improving Human Pose Estimation Based on Stacked Hourglass Network. Neural Process. Lett. 2023, 55, 9521–9544. [Google Scholar] [CrossRef] [Scilit]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.