Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
/ libmp-example Public archive

Use Mediapipe with CMake: Example LibMP Usage Application

License

Notifications You must be signed in to change notification settings

rajkundu/libmp-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LibMP Example Usage Application

  • See LibMP - MediaPipe as a Shared Library for more information on LibMP
  • This example application does the following in realtime:
    1. Streams video frames from an attached camera/webcam (OpenCV Device #0)
    2. Runs MediaPipe Face Mesh on each frame
    3. Uses LibMP to get the XYZ coordinates of detected landmarks
    4. Draws a circle at each landmark's location on the input frame
    5. Displays the result using OpenCV/HighGUI
  • Compilation is managed using CMake - see CMakeLists.txt and libprotobuf.cmake
    • Change ${MEDIAPIPE_DIR} in CMakeLists.txt to match your installation of LibMP
  • Other MP example graphs should be supported, though they I haven't yet tested them. As described below, any of MediaPipe's many Protobuf-based data types should work with LibMP.
  • Tested on Windows (MSVC 17.3.5)

Prerequisites

  1. Clone and build LibMP

Usage

  1. Compile using CMake
  2. cd into output directory containing main binary
  3. Run main binary

How it Works

Some (most?) MediaPipe data types are based on Protobuf messages. Thus, their data can be easily serialized and deserialized. LibMP provides functions which accomplish this, and this project imports both Protobuf & the Protobuf-based MediaPipe types - allowing for practically native use of MediaPipe data types in an external C++ application.

Contributions

Questions, suggestions, issues, pull requests, etc. are all welcome!

About

Use Mediapipe with CMake: Example LibMP Usage Application

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages