Skip to content

Commit 1722d4b

Browse files
MediaPipe Teamjqtang
MediaPipe Team
authored and
jqtang
committed
Project import generated by Copybara.
GitOrigin-RevId: 43cd697ec87dcc5cab5051f27960bb77a057399d
1 parent 3b6d3c4 commit 1722d4b

File tree

71 files changed

+6114
-626
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+6114
-626
lines changed

Diff for: WORKSPACE

+5-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,11 @@ http_archive(
129129
],
130130
# A compatibility patch
131131
patches = [
132-
"@//third_party:org_tensorflow_528e22eae8bf3206189a066032c66e9e5c9b4a61.diff"
132+
"@//third_party:org_tensorflow_528e22eae8bf3206189a066032c66e9e5c9b4a61.diff",
133+
# Updates for XNNPACK: https://github.com/tensorflow/tensorflow/commit/cfc31e324c8de6b52f752a39cb161d99d853ca99
134+
"@//third_party:org_tensorflow_cfc31e324c8de6b52f752a39cb161d99d853ca99.diff",
135+
# CpuInfo's build rule fixes.
136+
"@//third_party:org_tensorflow_9696366bcadab23a25c773b3ed405bac8ded4d0d.diff",
133137
],
134138
patch_args = [
135139
"-p1",

Diff for: mediapipe/calculators/core/BUILD

+10-3
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ cc_library(
228228
"//mediapipe/framework:calculator_framework",
229229
"//mediapipe/framework:collection_item_id",
230230
"//mediapipe/framework:packet",
231+
"//mediapipe/framework/formats:detection_cc_proto",
231232
"//mediapipe/framework/formats:landmark_cc_proto",
232233
"//mediapipe/framework/formats:rect_cc_proto",
233234
"//mediapipe/framework/port:integral_types",
@@ -249,6 +250,7 @@ cc_library(
249250
"//mediapipe/framework:calculator_framework",
250251
"//mediapipe/framework:collection_item_id",
251252
"//mediapipe/framework:packet",
253+
"//mediapipe/framework/formats:classification_cc_proto",
252254
"//mediapipe/framework/formats:landmark_cc_proto",
253255
"//mediapipe/framework/formats:rect_cc_proto",
254256
"//mediapipe/framework/port:integral_types",
@@ -265,10 +267,11 @@ cc_test(
265267
deps = [
266268
":begin_loop_calculator",
267269
":end_loop_calculator",
268-
"//mediapipe/calculators/core:packet_cloner_calculator",
270+
":gate_calculator",
269271
"//mediapipe/framework:calculator_context",
270272
"//mediapipe/framework:calculator_contract",
271273
"//mediapipe/framework:calculator_framework",
274+
"//mediapipe/framework:packet",
272275
"//mediapipe/framework/port:gtest_main",
273276
"//mediapipe/framework/port:integral_types",
274277
"//mediapipe/framework/port:parse_text_proto",
@@ -334,6 +337,7 @@ cc_library(
334337
deps = [
335338
":clip_vector_size_calculator_cc_proto",
336339
"//mediapipe/framework:calculator_framework",
340+
"//mediapipe/framework/formats:detection_cc_proto",
337341
"//mediapipe/framework/formats:rect_cc_proto",
338342
"//mediapipe/framework/port:ret_check",
339343
"//mediapipe/framework/port:status",
@@ -693,15 +697,17 @@ cc_test(
693697
name = "previous_loopback_calculator_test",
694698
srcs = ["previous_loopback_calculator_test.cc"],
695699
deps = [
700+
":gate_calculator",
701+
":make_pair_calculator",
702+
":pass_through_calculator",
696703
":previous_loopback_calculator",
697-
"//mediapipe/calculators/core:make_pair_calculator",
698-
"//mediapipe/calculators/core:pass_through_calculator",
699704
"//mediapipe/framework:calculator_framework",
700705
"//mediapipe/framework:calculator_runner",
701706
"//mediapipe/framework:timestamp",
702707
"//mediapipe/framework/port:gtest_main",
703708
"//mediapipe/framework/port:integral_types",
704709
"//mediapipe/framework/port:parse_text_proto",
710+
"//mediapipe/framework/port:status",
705711
"//mediapipe/framework/stream_handler:immediate_input_stream_handler",
706712
"//mediapipe/framework/tool:sink",
707713
"@com_google_absl//absl/time",
@@ -769,6 +775,7 @@ cc_library(
769775
visibility = ["//visibility:public"],
770776
deps = [
771777
":split_vector_calculator_cc_proto",
778+
"//mediapipe/framework/formats:detection_cc_proto",
772779
"//mediapipe/framework:calculator_framework",
773780
"//mediapipe/framework/formats:landmark_cc_proto",
774781
"//mediapipe/framework/formats:rect_cc_proto",

0 commit comments

Comments
 (0)