CVDec 18, 2017

LSTM Pose Machines

arXiv:1712.06316v4137 citations
Originality Highly original
AI Analysis

This work addresses video-based human pose estimation for applications requiring real-time and stable predictions, offering a novel method to improve efficiency and accuracy.

The paper tackled the problem of applying multi-stage CNNs to video-based human pose estimation, which suffers from high computational cost, performance degradation, and flickering, by proposing a novel recurrent network that reinterprets these CNNs as RNNs with LSTM units, resulting in significantly faster speed and outperforming state-of-the-art methods on two large-scale benchmarks.

We observed that recent state-of-the-art results on single image human pose estimation were achieved by multi-stage Convolution Neural Networks (CNN). Notwithstanding the superior performance on static images, the application of these models on videos is not only computationally intensive, it also suffers from performance degeneration and flicking. Such suboptimal results are mainly attributed to the inability of imposing sequential geometric consistency, handling severe image quality degradation (e.g. motion blur and occlusion) as well as the inability of capturing the temporal correlation among video frames. In this paper, we proposed a novel recurrent network to tackle these problems. We showed that if we were to impose the weight sharing scheme to the multi-stage CNN, it could be re-written as a Recurrent Neural Network (RNN). This property decouples the relationship among multiple network stages and results in significantly faster speed in invoking the network for videos. It also enables the adoption of Long Short-Term Memory (LSTM) units between video frames. We found such memory augmented RNN is very effective in imposing geometric consistency among frames. It also well handles input quality degradation in videos while successfully stabilizes the sequential outputs. The experiments showed that our approach significantly outperformed current state-of-the-art methods on two large-scale video pose estimation benchmarks. We also explored the memory cells inside the LSTM and provided insights on why such mechanism would benefit the prediction for video-based pose estimations.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes