Internal change

PiperOrigin-RevId: 518814155
This commit is contained in:
MediaPipe Team
2023-03-23 03:35:43 -07:00
committed by Copybara-Service
parent 58fa1e2ec3
commit 5998e96eed
11 changed files with 413 additions and 0 deletions
+5
View File
@@ -22,6 +22,7 @@ cc_library(
deps = [
":buffer",
"//mediapipe/framework/formats:frame_buffer",
"//mediapipe/framework/formats:tensor",
"//mediapipe/framework/port:status",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
@@ -37,6 +38,7 @@ cc_test(
deps = [
":frame_buffer_util",
"//mediapipe/framework/formats:frame_buffer",
"//mediapipe/framework/formats:tensor",
"//mediapipe/framework/port:gtest_main",
"//mediapipe/framework/port:status",
],
@@ -46,12 +48,14 @@ cc_library(
name = "buffer",
srcs = [
"buffer_common.cc",
"float_buffer.cc",
"gray_buffer.cc",
"rgb_buffer.cc",
"yuv_buffer.cc",
],
hdrs = [
"buffer_common.h",
"float_buffer.h",
"gray_buffer.h",
"rgb_buffer.h",
"yuv_buffer.h",
@@ -61,6 +65,7 @@ cc_library(
"//mediapipe/util/frame_buffer/halide:gray_resize_halide",
"//mediapipe/util/frame_buffer/halide:gray_rotate_halide",
"//mediapipe/util/frame_buffer/halide:rgb_flip_halide",
"//mediapipe/util/frame_buffer/halide:rgb_float_halide",
"//mediapipe/util/frame_buffer/halide:rgb_gray_halide",
"//mediapipe/util/frame_buffer/halide:rgb_resize_halide",
"//mediapipe/util/frame_buffer/halide:rgb_rgb_halide",