Interface PreprocessingConfig.PadOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PreprocessingConfig.Pad
,PreprocessingConfig.Pad.Builder
- Enclosing class:
- PreprocessingConfig
public static interface PreprocessingConfig.PadOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBottomPixels()
The number of pixels to add to the bottom.int
getLeftPixels()
The number of pixels to add to the left.int
getRightPixels()
The number of pixels to add to the right.int
getTopPixels()
The number of pixels to add to the top.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTopPixels
int getTopPixels()
The number of pixels to add to the top. The default is 0.
int32 top_pixels = 1;
- Returns:
- The topPixels.
-
getBottomPixels
int getBottomPixels()
The number of pixels to add to the bottom. The default is 0.
int32 bottom_pixels = 2;
- Returns:
- The bottomPixels.
-
getLeftPixels
int getLeftPixels()
The number of pixels to add to the left. The default is 0.
int32 left_pixels = 3;
- Returns:
- The leftPixels.
-
getRightPixels
int getRightPixels()
The number of pixels to add to the right. The default is 0.
int32 right_pixels = 4;
- Returns:
- The rightPixels.
-
-