computer-visionheatmapopenvinopose-estimationefficientnet

Pose Estimation Using Associative Embedding technique


In Pose Estimation Using Associative Embedding technique I still don't have clarity regarding How we can group the detected points from HeatMaps to Individual Human Poses using Associative Embeddings Layer. Is there any code that clearly gives Idea regarding this ? I'm Using EfficientHRNet approach for Pose Estimation.

Extracted KeyPoints from Heatmaps and need to group those points into individual poses using Embedding Layer Output.


Solution

  • From OpenVINO perspective, we could offer:

    1. This model: human-pose-estimation-0007
    2. This IE demo: Human Pose Estimation Python* Demo

    This model utilized the Associative Embedding technique. However, if you want to build it from scratch, you'll need to design your own Deep Learning architecture, implement and train the neural network.

    This research paper might give you some insight into things that you need to decide (eg batch, optimization algorithm, learning rate, etc).