Skip to content

Commit c6d1e6e

Browse files
committed
add transformation result message
1 parent f575a52 commit c6d1e6e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tensorflow_lite_support/cc/task/vision/proto/transformations.proto

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ syntax = "proto2";
1717

1818
package tflite.task.vision;
1919

20+
message TransformationResult {
21+
repeated Transformation transformation = 1;
22+
}
23+
2024
// A single transformed image.
2125
message Transformation {
22-
2326
// Output image height.
24-
optional int32 out_height = 1;
27+
optional int32 height = 1;
2528
// Output image width.
26-
optional int32 out_width = 2;
29+
optional int32 width = 2;
2730
}
2831

0 commit comments

Comments
 (0)