53 lines
1.8 KiB
Plaintext
53 lines
1.8 KiB
Plaintext
|
# MediaPipe graph that performs selfie segmentation with TensorFlow Lite on CPU.
|
||
|
|
||
|
# CPU buffer. (ImageFrame)
|
||
|
input_stream: "input_video"
|
||
|
|
||
|
# Output image with rendered results. (ImageFrame)
|
||
|
output_stream: "output_video"
|
||
|
|
||
|
# Throttles the images flowing downstream for flow control. It passes through
|
||
|
# the very first incoming image unaltered, and waits for downstream nodes
|
||
|
# (calculators and subgraphs) in the graph to finish their tasks before it
|
||
|
# passes through another image. All images that come in while waiting are
|
||
|
# dropped, limiting the number of in-flight images in most part of the graph to
|
||
|
# 1. This prevents the downstream nodes from queuing up incoming images and data
|
||
|
# excessively, which leads to increased latency and memory usage, unwanted in
|
||
|
# real-time mobile applications. It also eliminates unnecessarily computation,
|
||
|
# e.g., the output produced by a node may get dropped downstream if the
|
||
|
# subsequent nodes are still busy processing previous inputs.
|
||
|
node {
|
||
|
calculator: "FlowLimiterCalculator"
|
||
|
input_stream: "input_video"
|
||
|
input_stream: "FINISHED:output_video"
|
||
|
input_stream_info: {
|
||
|
tag_index: "FINISHED"
|
||
|
back_edge: true
|
||
|
}
|
||
|
output_stream: "throttled_input_video"
|
||
|
}
|
||
|
|
||
|
# Subgraph that performs selfie segmentation.
|
||
|
node {
|
||
|
calculator: "SelfieSegmentationCpu"
|
||
|
input_stream: "IMAGE:throttled_input_video"
|
||
|
output_stream: "SEGMENTATION_MASK:segmentation_mask"
|
||
|
}
|
||
|
|
||
|
|
||
|
# Colors the selfie segmentation with the color specified in the option.
|
||
|
node {
|
||
|
calculator: "RecolorCalculator"
|
||
|
input_stream: "IMAGE:throttled_input_video"
|
||
|
input_stream: "MASK:segmentation_mask"
|
||
|
output_stream: "IMAGE:output_video"
|
||
|
node_options: {
|
||
|
[type.googleapis.com/mediapipe.RecolorCalculatorOptions] {
|
||
|
color { r: 0 g: 0 b: 255 }
|
||
|
mask_channel: RED
|
||
|
invert_mask: true
|
||
|
adjust_with_luminance: false
|
||
|
}
|
||
|
}
|
||
|
}
|