Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
testing build
  • Loading branch information
jonpsy authored Dec 3, 2021
commit 6bd88dc4c68dd1e3538f6c74757f7dc957d94dc8
19 changes: 19 additions & 0 deletions tensorflow_lite_support/cc/test/task/vision/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,22 @@ cc_test_with_tflite(
"@org_tensorflow//tensorflow/lite/kernels:builtin_ops",
],
)

cc_test_with_tflite(
name = "image_transformer_test",
srcs = ["image_transformer_test.cc"],
data = [
"//tensorflow_lite_support/cc/test/testdata/task/vision:test_images",
"//tensorflow_lite_support/cc/test/testdata/task/vision:test_models",
],
deps = [
"//tensorflow_lite_support/cc/task/vision:image_transformer",
"@org_tensorflow//tensorflow/lite/core/shims:cc_shims_test_util",
"//tensorflow_lite_support/cc/port:gtest_main",
"//tensorflow_lite_support/cc/task/vision/utils:frame_buffer_common_utils",
"//tensorflow_lite_support/cc/task/vision/utils:frame_buffer_utils",
"//tensorflow_lite_support/cc/test:test_utils",
"//tensorflow_lite_support/examples/task/vision/desktop/utils:image_utils",
"@com_google_absl//absl/flags:flag",
],
)