Skip to content

Grant-Steinfeld/yogait

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yoga pose estimation, using Computer Vision, Deep learning and Tensorflow running on Red Hat OpenShift Kubernetes

Presenter and teacher

Grant Steinfeld grant.steinfeld.tech@gmail.com @gsteinfeld https://www.linkedin.com/in/grant-steinfeld/

tweet collage of the event [Tweet post event](- https://twitter.com/gsteinfeld/status/1235952319944175616?s=20)

Slide deck on SlideShare

https://www.slideshare.net/GrantSteinfeld/cv-deep-learning-on-ibm-redhat-openshift

Meetup March 4th 2020 LMHQ

https://www.meetup.com/ibmcodenyc/events/268172307/

What you will learn

  1. Deploy MAX image classifier to RedHat OpenShift 3 on IBM Cloud

  2. Build a web application that recognizes Yoga poses using a model from the Model Asset Exchange.

IBM Developer Model Asset Exchange: Human Pose Estimator Demo

Yogait is a yoga assistant that uses the Human Pose Estimator MAX Model to guess which yoga pose a user is performing. The MAX model is deployed to a local server which performs inference and returns the pose guess to the client application.

Authors

URLs

Pattern Github Repo

MAX Model Github Repo

Summary

In this code pattern, we will create an interactive web application that uses the webcam to recognize the user's yoga poses.

Included Components

  • IBM Model Asset Exchange: A place for developers to find and use free and open source deep learning models.
  • Docker: Docker is a tool designed to make it easier to create, deploy, and run applications by using containers.

Featured Technologies

  • Python: Python is a programming language that lets you work more quickly and integrate your systems more effectively.
  • JQuery: jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML.
  • Bootstrap 3: Bootstrap is a free and open-source front-end library for designing websites and web applications.

Description

The Human Pose Estimator model detects humans and their poses in a given image. The model first detects the humans in the input image and then identifies the body parts, including nose, neck, eyes, shoulders, elbows, wrists, hips, knees, and ankles. Next, each pair of associated body parts is connected by a "pose line"; for example, as the following image shows, a line may connect the left eye to the nose, while another may connect the nose to the neck.

Pose Line Example

Each pose line is represented by a list [x1, y1, x2, y2], where the first pair of coordinates (x1, y1) is the start point of the line for one body part, while the second pair of coordinates (x2, y2) is the end point of the line for the other associated body part. The pose lines are assembled into full body poses for each of the humans detected in the image.

The model is based on the TF implementation of OpenPose model. The code in this repository deploys the model as a web service in a Docker container. This repository was developed as part of the IBM Developer Model Asset Exchange.

Yogait uses a pre-trained SVM to classify poses. Instead of using the Cartesian lines that the MAX model returns, Yogait uses a Polar representation to perform classification. This was done to make it much easier to classify poses. Instead of training the SVM on a x-y coordinate system, which would require translation and rotation when augmenting data, the polar representation relies only upon the location of the joints relative to the center of the estimated model.

The [x,y] coordinates are converted to [phi, rho] for each joint.

Pose Conversion

The SVM performs classification on a flattened version of the polar vectors. Compared to a Cartesian representation, this polar representation uses very little data and can perform classification on a human in any part of a captured frame. If the Cartesian representation was to be used, then the user would have to perform all poses in the center of the camera frame.

When the reader has completed the Code Pattern, they will understand how to:

  • Build a Docker image of the Human Pose Estimator MAX Model
  • Deploy a deep learning model with a REST endpoint
  • Generate a pose estimation for a person in a frame of video using the MAX Model's REST API
  • Run a web application that using the model's REST API

Yogait Flow

Flow

  1. Server sends the captured video frame-by-frame from the webcam to the Model API.
  2. Web UI requests the pose lines estimated for the frame from the Server.
  3. Server receives data from the Model API and updates the result to the Web UI.

Yogait can be run either in the Jupyter notebook (demo.ipynb) or by running the scripts. You can run Yogait with either a pre-trained model (located at /assets/classifier.pkl) or retrain it on your own data.

Steps

Using Web App

Setting up the MAX Model

  1. Deploy the Model
  2. Experimenting with the API (Optional)

Running Local Python Script

  1. Check out the python code
  2. Performing live inference
  3. Retraining the SVM

Setting up the MAX Model

NOTE: The set of instructions in this section are a modified version of the one found on the Human Pose Estimator Project Page

1. Deploy the Model

To run the docker image, which automatically starts the model serving API, run:

docker run -e CORS_ENABLE=true -e WERKZEUG_RUN_MAIN=true -it -p 5000:5000 codait/max-human-pose-estimator

This will pull a pre-built image from Docker Hub (or use an existing image if already cached locally) and run it. If you'd rather build the model locally you can follow the steps in the model README.

Note that currently this docker image is CPU only (we will add support for GPU images later).

2. Experimenting with the API (Optional)

The API server automatically generates an interactive Swagger documentation page. Go to http://localhost:5000 to load it. From there you see the API with the test requests.

Use the model/predict endpoint to load a test file and get estimated pose lines for the image from the API.

The samples folder contains images you can use to test out the API, or you can use your own.

You can also test it on the command line, for example:

curl -F "file=@path/to/pose.jpg" -X POST http://localhost:5000/model/predict
{
  "status": "ok",
  "predictions": [
    {
      "human_id": 0,
      "pose_lines": [
        {
          "line": [
            444,
            269,
            392,
            269
          ]
        },

        ...

        {
          "line": [
            439,
            195,
            464,
            197
          ]
        }
      ],
      "body_parts": [
        {
          "part_id": 0,
          "part_name": "Nose",
          "score": "0.83899",
          "x": 428,
          "y": 205
        },

        ...

        {
          "part_id": 17,
          "part_name": "LEar",
          "score": "0.81776",
          "x": 464,
          "y": 197
        }
      ]
    },

    ...

  ]
}

Starting the Web App

1. Check out the code

Clone the Yogait repository locally by running the following command:

git clone https://github.com/dzwietering/yogait

Then change directory into the local repository

cd yogait

2. Installing dependencies

The optional recommendation for Python development is to use a virtual environment (venv). To install and initialize a virtual environment, use the venv module on Python 3 (you install the virtualenv library for Python 2.7). You can also skip this and continue to install into your current Python environment directly.

# Create the virtual environment using Python. Use one of the two commands depending on your Python version.
# Note, it may be named python3 on your system.

$ python -m venv mytestenv       # Python 3.X
$ virtualenv mytestenv           # Python 2.X

# Now source the virtual environment. Use one of the two commands depending on your OS.

$ source mytestenv/bin/activate  # Mac or Linux
$ ./mytestenv/Scripts/activate   # Windows PowerShell

Before running this web app you must install its dependencies:

pip install -r requirements.txt

TIP 💡 To terminate the virtual environment use the deactivate command.

Running Local Python Script

1. Check out the python code

The python scripts are located in the main and utils folder.

helpers.py and data.py contain helper functions for the rest of the code

train.py retrains the SVM on the folders and images located in the assets/images folder

inference.py runs a live inference demo that uses the deployed Docker image to estimate live poses

If you don't have the local Docker image running you can edit line 7 of utils/helpers.py to refer to the web API similar to the edit in main.jsas specified in the previous section.

2. Performing Live Inference

You then start the live inference demo by running:

python inference.py

You can then view live pose estimation in a window and predictions from the SVM in the terminal.

The Human Pose Estimator endpoint must be available as specified in utils/helpers.py for the web app to successfully start.

3. Retraining the SVM

You can retrain the SVM on your own poses by adding images and folders to assets/images. Images of the same class must be in the same folder and must be .png, .jpeg, or .jpg filetypes.

You can then retrain the SVM on the updated classes by running from the main folder:

```python
python train.py
```

Links

Learn More

Create / login to your free IBM Cloud Account https://ibm.biz/BdqDVL

  • Artificial Intelligence Code Patterns: Enjoyed this Code Pattern? Check out our other Artificial Intelligence Code Patterns
  • AI and Data Code Pattern Playlist: Bookmark our playlist with all of our Code Pattern videos
  • Watson Studio: Master the art of data science with IBM's Watson Studio
  • Deep Learning with Watson Studio: Design and deploy deep learning models using neural networks, easily scale to hundreds of training runs. Learn more at Deep Learning with Watson Studio.

License

This code pattern is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 (DCO) and the Apache Software License, Version 2.

Apache Software License (ASL) FAQ

About

Work on your form! This edge CV / ML will help your yoga practice as well as have some geeky fun!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 98.6%
  • Other 1.4%