We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f575a52 commit c6d1e6eCopy full SHA for c6d1e6e
tensorflow_lite_support/cc/task/vision/proto/transformations.proto
@@ -17,12 +17,15 @@ syntax = "proto2";
17
18
package tflite.task.vision;
19
20
+message TransformationResult {
21
+ repeated Transformation transformation = 1;
22
+}
23
+
24
// A single transformed image.
25
message Transformation {
-
26
// Output image height.
- optional int32 out_height = 1;
27
+ optional int32 height = 1;
28
// Output image width.
- optional int32 out_width = 2;
29
+ optional int32 width = 2;
30
}
31
0 commit comments