mediapipe/mediapipe/modules/face_detection/face_detection_full_range_cpu.pbtxt
MediaPipe Team c688862570 Project import generated by Copybara.
GitOrigin-RevId: 6e5aa035cd1f6a9333962df5d3ab97a05bd5744e
2022-06-28 12:11:05 +00:00

26 lines
622 B
Plaintext

# MediaPipe graph to detect faces. (CPU input and inference.)
type: "FaceDetectionFullRangeCpu"
# The input image, either ImageFrame, or (multi-backend) Image.
input_stream: "IMAGE:image"
# Detected faces. (std::vector<Detection>)
output_stream: "DETECTIONS:detections"
graph_options: {
[type.googleapis.com/mediapipe.FaceDetectionOptions] {}
}
node {
calculator: "FaceDetectionFullRange"
input_stream: "IMAGE:image"
output_stream: "DETECTIONS:detections"
node_options: {
[type.googleapis.com/mediapipe.FaceDetectionOptions] {
delegate { xnnpack {} }
}
}
option_value: "OPTIONS:options"
}