2020-06-06 01:49:27 +02:00
|
|
|
---
|
2023-02-28 01:10:16 +01:00
|
|
|
layout: forward
|
|
|
|
target: https://developers.google.com/mediapipe/framework/getting_started/faq
|
2020-06-06 01:49:27 +02:00
|
|
|
title: FAQ
|
|
|
|
parent: Getting Started
|
|
|
|
nav_order: 9
|
|
|
|
---
|
2019-06-17 01:03:25 +02:00
|
|
|
|
2020-06-06 01:49:27 +02:00
|
|
|
# FAQ
|
|
|
|
{: .no_toc }
|
|
|
|
|
|
|
|
1. TOC
|
|
|
|
{:toc}
|
|
|
|
---
|
2019-06-17 01:03:25 +02:00
|
|
|
|
2023-04-04 00:12:06 +02:00
|
|
|
**Attention:** *Thanks for your interest in MediaPipe! We have moved to
|
|
|
|
[https://developers.google.com/mediapipe](https://developers.google.com/mediapipe)
|
|
|
|
as the primary developer documentation site for MediaPipe as of April 3, 2023.*
|
|
|
|
|
|
|
|
----
|
|
|
|
|
2019-06-17 01:03:25 +02:00
|
|
|
### How to convert ImageFrames and GpuBuffers
|
|
|
|
|
|
|
|
The Calculators [`ImageFrameToGpuBufferCalculator`] and
|
|
|
|
[`GpuBufferToImageFrameCalculator`] convert back and forth between packets of
|
|
|
|
type [`ImageFrame`] and [`GpuBuffer`]. [`ImageFrame`] refers to image data in
|
|
|
|
CPU memory in any of a number of bitmap image formats. [`GpuBuffer`] refers to
|
|
|
|
image data in GPU memory. You can find more detail in the Framework Concepts
|
|
|
|
section
|
2020-04-24 23:06:05 +02:00
|
|
|
[GpuBuffer to ImageFrame Converters](./gpu.md#gpubuffer-to-imageframe-converters).
|
2019-06-17 01:03:25 +02:00
|
|
|
You can see an example in:
|
|
|
|
|
2019-08-17 03:49:25 +02:00
|
|
|
* [`object_detection_mobile_cpu.pbtxt`]
|
2019-06-17 01:03:25 +02:00
|
|
|
|
|
|
|
### How to visualize perception results
|
|
|
|
|
2019-07-02 01:43:41 +02:00
|
|
|
The [`AnnotationOverlayCalculator`] allows perception results, such as bounding
|
2019-06-17 01:03:25 +02:00
|
|
|
boxes, arrows, and ovals, to be superimposed on the video frames aligned with
|
|
|
|
the recognized objects. The results can be displayed in a diagnostic window when
|
|
|
|
running on a workstation, or in a texture frame when running on device. You can
|
|
|
|
see an example use of [`AnnotationOverlayCalculator`] in:
|
|
|
|
|
2019-08-17 03:49:25 +02:00
|
|
|
* [`face_detection_mobile_gpu.pbtxt`].
|
2019-06-17 01:03:25 +02:00
|
|
|
|
|
|
|
### How to run calculators in parallel
|
|
|
|
|
|
|
|
Within a calculator graph, MediaPipe routinely runs separate calculator nodes
|
|
|
|
in parallel. MediaPipe maintains a pool of threads, and runs each calculator
|
|
|
|
as soon as a thread is available and all of it's inputs are ready. Each
|
|
|
|
calculator instance is only run for one set of inputs at a time, so most
|
|
|
|
calculators need only to be *thread-compatible* and not *thread-safe*.
|
|
|
|
|
|
|
|
In order to enable one calculator to process multiple inputs in parallel, there
|
|
|
|
are two possible approaches:
|
|
|
|
|
2023-04-06 01:49:13 +02:00
|
|
|
1. Define multiple calculator nodes and dispatch input packets to all nodes.
|
2019-06-17 01:03:25 +02:00
|
|
|
2. Make the calculator thread-safe and configure its [`max_in_flight`] setting.
|
|
|
|
|
|
|
|
The first approach can be followed using the calculators designed to distribute
|
|
|
|
packets across other calculators, such as [`RoundRobinDemuxCalculator`]. A
|
|
|
|
single [`RoundRobinDemuxCalculator`] can distribute successive packets across
|
|
|
|
several identically configured [`ScaleImageCalculator`] nodes.
|
|
|
|
|
|
|
|
The second approach allows up to [`max_in_flight`] invocations of the
|
|
|
|
[`CalculatorBase::Process`] method on the same calculator node. The output
|
|
|
|
packets from [`CalculatorBase::Process`] are automatically ordered by timestamp
|
|
|
|
before they are passed along to downstream calculators.
|
|
|
|
|
2023-02-23 17:31:19 +01:00
|
|
|
With either approach, you must be aware that the calculator running in parallel
|
2019-06-17 01:03:25 +02:00
|
|
|
cannot maintain internal state in the same way as a normal sequential
|
|
|
|
calculator.
|
|
|
|
|
|
|
|
### Output timestamps when using ImmediateInputStreamHandler
|
|
|
|
|
|
|
|
The [`ImmediateInputStreamHandler`] delivers each packet as soon as it arrives
|
|
|
|
at an input stream. As a result, it can deliver a packet
|
|
|
|
with a higher timestamp from one input stream before delivering a packet with a
|
|
|
|
lower timestamp from a different input stream. If these input timestamps are
|
|
|
|
both used for packets sent to one output stream, that output stream will
|
|
|
|
complain that the timestamps are not monotonically increasing. In order to
|
|
|
|
remedy this, the calculator must take care to output a packet only after
|
|
|
|
processing is complete for its timestamp. This could be accomplished by waiting
|
|
|
|
until input packets have been received from all inputstreams for that timestamp,
|
|
|
|
or by ignoring a packet that arrives with a timestamp that has already been
|
|
|
|
processed.
|
|
|
|
|
|
|
|
### How to change settings at runtime
|
|
|
|
|
|
|
|
There are two main approaches to changing the settings of a calculator graph
|
|
|
|
while the application is running:
|
|
|
|
|
|
|
|
1. Restart the calculator graph with modified [`CalculatorGraphConfig`].
|
|
|
|
2. Send new calculator options through packets on graph input-streams.
|
|
|
|
|
|
|
|
The first approach has the advantage of leveraging [`CalculatorGraphConfig`]
|
|
|
|
processing tools such as "subgraphs". The second approach has the advantage of
|
|
|
|
allowing active calculators and packets to remain in-flight while settings
|
2023-04-06 01:49:13 +02:00
|
|
|
change. MediaPipe contributors are currently investigating alternative approaches
|
2019-07-02 01:43:41 +02:00
|
|
|
to achieve both of these advantages.
|
2019-06-17 01:03:25 +02:00
|
|
|
|
|
|
|
### How to process realtime input streams
|
|
|
|
|
2023-04-06 01:49:13 +02:00
|
|
|
The MediaPipe framework can be used to process data streams either online or
|
2019-06-17 01:03:25 +02:00
|
|
|
offline. For offline processing, packets are pushed into the graph as soon as
|
|
|
|
calculators are ready to process those packets. For online processing, one
|
|
|
|
packet for each frame is pushed into the graph as that frame is recorded.
|
|
|
|
|
|
|
|
The MediaPipe framework requires only that successive packets be assigned
|
|
|
|
monotonically increasing timestamps. By convention, realtime calculators and
|
|
|
|
graphs use the recording time or the presentation time as the timestamp for each
|
|
|
|
packet, with each timestamp representing microseconds since
|
|
|
|
`Jan/1/1970:00:00:00`. This allows packets from various sources to be processed
|
2021-10-06 22:44:33 +02:00
|
|
|
in a globally consistent order.
|
2019-06-17 01:03:25 +02:00
|
|
|
|
|
|
|
Normally for offline processing, every input packet is processed and processing
|
|
|
|
continues as long as necessary. For online processing, it is often necessary to
|
|
|
|
drop input packets in order to keep pace with the arrival of input data frames.
|
|
|
|
When inputs arrive too frequently, the recommended technique for dropping
|
|
|
|
packets is to use the MediaPipe calculators designed specifically for this
|
2019-08-17 03:49:25 +02:00
|
|
|
purpose such as [`FlowLimiterCalculator`] and [`PacketClonerCalculator`].
|
2019-06-17 01:03:25 +02:00
|
|
|
|
|
|
|
For online processing, it is also necessary to promptly determine when processing
|
|
|
|
can proceed. MediaPipe supports this by propagating timestamp bounds between
|
|
|
|
calculators. Timestamp bounds indicate timestamp intervals that will contain no
|
|
|
|
input packets, and they allow calculators to begin processing for those
|
|
|
|
timestamps immediately. Calculators designed for realtime processing should
|
|
|
|
carefully calculate timestamp bounds in order to begin processing as promptly as
|
|
|
|
possible. For example, the [`MakePairCalculator`] uses the `SetOffset` API to
|
|
|
|
propagate timestamp bounds from input streams to output streams.
|
|
|
|
|
|
|
|
### Can I run MediaPipe on MS Windows?
|
|
|
|
|
|
|
|
Currently MediaPipe portability supports Debian Linux, Ubuntu Linux,
|
|
|
|
MacOS, Android, and iOS. The core of MediaPipe framework is a C++ library
|
|
|
|
conforming to the C++11 standard, so it is relatively easy to port to
|
|
|
|
additional platforms.
|
|
|
|
|
2019-08-17 03:49:25 +02:00
|
|
|
[`object_detection_mobile_cpu.pbtxt`]: https://github.com/google/mediapipe/tree/master/mediapipe/graphs/object_detection/object_detection_mobile_cpu.pbtxt
|
2019-06-17 01:03:25 +02:00
|
|
|
[`ImageFrame`]: https://github.com/google/mediapipe/tree/master/mediapipe/framework/formats/image_frame.h
|
|
|
|
[`GpuBuffer`]: https://github.com/google/mediapipe/tree/master/mediapipe/gpu/gpu_buffer.h
|
|
|
|
[`GpuBufferToImageFrameCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/gpu/gpu_buffer_to_image_frame_calculator.cc
|
|
|
|
[`ImageFrameToGpuBufferCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/gpu/image_frame_to_gpu_buffer_calculator.cc
|
|
|
|
[`AnnotationOverlayCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/calculators/util/annotation_overlay_calculator.cc
|
2019-08-17 03:49:25 +02:00
|
|
|
[`face_detection_mobile_gpu.pbtxt`]: https://github.com/google/mediapipe/tree/master/mediapipe/graphs/face_detection/face_detection_mobile_gpu.pbtxt
|
2019-06-17 01:03:25 +02:00
|
|
|
[`CalculatorBase::Process`]: https://github.com/google/mediapipe/tree/master/mediapipe/framework/calculator_base.h
|
|
|
|
[`max_in_flight`]: https://github.com/google/mediapipe/tree/master/mediapipe/framework/calculator.proto
|
|
|
|
[`RoundRobinDemuxCalculator`]: https://github.com/google/mediapipe/tree/master//mediapipe/calculators/core/round_robin_demux_calculator.cc
|
|
|
|
[`ScaleImageCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/calculators/image/scale_image_calculator.cc
|
|
|
|
[`ImmediateInputStreamHandler`]: https://github.com/google/mediapipe/tree/master/mediapipe/framework/stream_handler/immediate_input_stream_handler.cc
|
|
|
|
[`CalculatorGraphConfig`]: https://github.com/google/mediapipe/tree/master/mediapipe/framework/calculator.proto
|
2019-08-17 03:49:25 +02:00
|
|
|
[`FlowLimiterCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/calculators/core/flow_limiter_calculator.cc
|
2019-06-17 01:03:25 +02:00
|
|
|
[`PacketClonerCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/calculators/core/packet_cloner_calculator.cc
|
|
|
|
[`MakePairCalculator`]: https://github.com/google/mediapipe/tree/master/mediapipe/calculators/core/make_pair_calculator.cc
|