All Projects → IBM → Max Human Pose Estimator

IBM / Max Human Pose Estimator

Licence: apache-2.0
Detect humans in an image and estimate the pose for each person

Projects that are alternatives of or similar to Max Human Pose Estimator

Docker Yellowlabtools
🐳 Yellow Lab Tools Docker Image
Stars: ✭ 30 (-31.82%)
Mutual labels:  docker-image
Hetzner Gitlab Runner
Autoscale gitlab ci runners on hetzner cloud
Stars: ✭ 36 (-18.18%)
Mutual labels:  docker-image
Tensorflow Serving sidecar
Serve machine learning models using tensorflow serving
Stars: ✭ 41 (-6.82%)
Mutual labels:  coco
Passwordcockpit
Passwordcockpit is a simple, free, open source, self hosted, web based password manager for teams. It is made in PHP, Javascript, MySQL and it run on a docker service. It allows users with any kind of device to safely store, share and retrieve passwords, certificates, files and much more.
Stars: ✭ 34 (-22.73%)
Mutual labels:  docker-image
Max Text Sentiment Classifier
Detect the sentiment captured in short pieces of text
Stars: ✭ 35 (-20.45%)
Mutual labels:  docker-image
Magento2 Varnish Redis Ssl Docker Compose
Deploy Magento2 with Varnish Cache and Redis with SSL termination using Docker-compose tool
Stars: ✭ 37 (-15.91%)
Mutual labels:  docker-image
Feedthebeast Docker Servers
FTB Minecraft servers dockerized
Stars: ✭ 27 (-38.64%)
Mutual labels:  docker-image
Ros docker
Docker images for ROS master, bridge and nodes
Stars: ✭ 43 (-2.27%)
Mutual labels:  docker-image
Jenkins Android Docker
🐳 Docker image for Jenkins with Android
Stars: ✭ 35 (-20.45%)
Mutual labels:  docker-image
Weblogic Image Tool
Oracle WebLogic Image Tool
Stars: ✭ 41 (-6.82%)
Mutual labels:  docker-image
Pyats Docker
Dockerfile and scripts for pyATS
Stars: ✭ 34 (-22.73%)
Mutual labels:  docker-image
Search Docker Registry V2 Script.1.0
view-private-registry is a simple bash script for listing images in a private registry v2, docker search registry-v2
Stars: ✭ 34 (-22.73%)
Mutual labels:  docker-image
Graphqldockerproxy
A generic Graphql API for Docker and Kubernetes
Stars: ✭ 38 (-13.64%)
Mutual labels:  docker-image
Docker Mediawiki
🐳 Dockerized Femiwiki's mediawiki server
Stars: ✭ 33 (-25%)
Mutual labels:  docker-image
Docker Liferay Portal
Stars: ✭ 41 (-6.82%)
Mutual labels:  docker-image
Ustcmirror Images
Docker images used by ustcmirror 🚀
Stars: ✭ 29 (-34.09%)
Mutual labels:  docker-image
Docker Oracle Setup
Instructions on how to setup Oracle and APEX on Docker
Stars: ✭ 37 (-15.91%)
Mutual labels:  docker-image
Uvicorn Gunicorn Fastapi Docker
Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python 3.6 and above with performance auto-tuning. Optionally with Alpine Linux.
Stars: ✭ 1,014 (+2204.55%)
Mutual labels:  docker-image
Chatwoot
Open-source customer engagement suite, an alternative to Intercom, Zendesk, Salesforce Service Cloud etc. 🔥💬
Stars: ✭ 11,554 (+26159.09%)
Mutual labels:  docker-image
Docker Sphinxsearch
Docker image for Sphinx search engine
Stars: ✭ 40 (-9.09%)
Mutual labels:  docker-image

Build Status Website Status

IBM Developer Model Asset Exchange: Human Pose Estimator

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 open source 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.

Model Metadata

Domain Application Industry Framework Training Data Input Data Format
Vision Pose Estimation General TensorFlow COCO Image(RGB)

References

Licenses

Component License Link
This repository Apache 2.0 LICENSE
Model Weights (MobileNet only) Apache 2.0 LICENSE
Model Code (3rd party) Apache 2.0 LICENSE
Test Samples Various Samples README

Pre-requisites:

  • docker: The Docker command-line interface. Follow the installation instructions for your system.
  • The minimum recommended resources for this model is 2GB Memory and 1 CPU.
  • If you are on x86-64/AMD64, your CPU must support AVX at the minimum.

Deployment options

Deploy from Quay

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

$ docker run -it -p 5000:5000 quay.io/codait/max-human-pose-estimator

This will pull a pre-built image from the Quay.io container registry (or use an existing image if already cached locally) and run it. If you'd rather checkout and build the model locally you can follow the run locally steps below.

Deploy on Red Hat OpenShift

You can deploy the model-serving microservice on Red Hat OpenShift by following the instructions for the OpenShift web console or the OpenShift Container Platform CLI in this tutorial, specifying quay.io/codait/max-human-pose-estimator as the image name.

Deploy on Kubernetes

You can also deploy the model on Kubernetes using the latest docker image on Quay.

On your Kubernetes cluster, run the following commands:

$ kubectl apply -f https://raw.githubusercontent.com/IBM/MAX-Human-Pose-Estimator/master/max-human-pose-estimator.yaml

The model will be available internally at port 5000, but can also be accessed externally through the NodePort.

Run Locally

  1. Build the Model
  2. Deploy the Model
  3. Use the Model
  4. Run the Notebook
  5. Development
  6. Cleanup

1. Build the Model

Clone this repository locally. In a terminal, run the following command:

$ git clone https://github.com/IBM/MAX-Human-Pose-Estimator

Change directory into the repository base folder:

$ cd MAX-Human-Pose-Estimator

To build the docker image locally, run:

$ docker build -t max-human-pose-estimator .

All required model assets will be downloaded during the build process. Note that currently this docker image is CPU only (we will add support for GPU images later).

2. Deploy the Model

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

$ docker run -it -p 5000:5000 max-human-pose-estimator

3. Use the Model

The API server automatically generates an interactive Swagger documentation page. Go to http://localhost:5000 to load it. From there you can explore the API and also create test requests. Use the model/predict endpoint to load a test image (you can use one of the test images from the samples folder) and get predicted labels for the image from the API.

Swagger UI Screenshot

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

$ curl -F "[email protected]/Pilots.jpg" -XPOST http://localhost:5000/model/predict

You should see a JSON response like that below:

{
  "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
        }
      ]
    },

    ...

  ]
}

4. Run the Notebook

Once the model server is running, you can see how to use it by walking through the demo notebook. Note the demo requires jupyter, numpy, matplotlib, opencv-python, json, and requests.

Run the following command from the model repo base folder, in a new terminal window (leaving the model server running in the other terminal window):

$ jupyter notebook

This will start the notebook server. You can open the simple demo notebook by clicking on samples/demo.ipynb.

5. Development

To run the Flask API app in debug mode, edit config.py to set DEBUG = True under the application settings. You will then need to rebuild the docker image (see step 1).

6. Cleanup

To stop the Docker container, type CTRL + C in your terminal.

Resources and Contributions

If you are interested in contributing to the Model Asset Exchange project or have any queries, please follow the instructions here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].