...

/

Appendix A: External Python Libraries

Appendix A: External Python Libraries

Let’s inspect the Python external libraries used in this course.

List of third-party Python libraries

A Python library is a reusable chunk of code that can be exploited and leveraged for its capabilities and solve specific tasks in your projects. An exhaustive collection of useful Python libraries offer robust and systematic foundations that support computer vision implementations and face analysis projects.

We’re going to focus on an expansive set of third-party Python libraries that were used throughout this course:

MediaPipe

MediaPipe is an open-source, graph-based framework developed by Google for media processing. MediaPipe is a cross-platform machine learning framework that builds complex and multimodal sensible machine learning pipelines.

MediaPipe may be drawn to make advanced machine learning models like object detection, face detection, multi-hand tracking, and so on. It fundamentally acts as an intermediary for governing the implementation of ML models on systems running on different platforms. This will help the developers concentrate on working with these ML models rather than building them.

The ...