public interface WordOrBuilder extends MessageOrBuilder
Type | Property and Description |
---|---|
boolean |
has
Additional information detected for the word.
|
Modifier and Type | Method and Description |
---|---|
BoundingPoly |
getBoundingBox()
The bounding box for the word.
|
BoundingPolyOrBuilder |
getBoundingBoxOrBuilder()
The bounding box for the word.
|
float |
getConfidence()
Confidence of the OCR results for the word.
|
TextAnnotation.TextProperty |
getProperty()
Additional information detected for the word.
|
TextAnnotation.TextPropertyOrBuilder |
getPropertyOrBuilder()
Additional information detected for the word.
|
Symbol |
getSymbols(int index)
List of symbols in the word.
|
int |
getSymbolsCount()
List of symbols in the word.
|
java.util.List<Symbol> |
getSymbolsList()
List of symbols in the word.
|
SymbolOrBuilder |
getSymbolsOrBuilder(int index)
List of symbols in the word.
|
java.util.List<? extends SymbolOrBuilder> |
getSymbolsOrBuilderList()
List of symbols in the word.
|
boolean |
hasBoundingBox()
The bounding box for the word.
|
boolean |
hasProperty()
Additional information detected for the word.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
boolean hasProperty
Additional information detected for the word.
.google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
boolean hasProperty()
Additional information detected for the word.
.google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
TextAnnotation.TextProperty getProperty()
Additional information detected for the word.
.google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
TextAnnotation.TextPropertyOrBuilder getPropertyOrBuilder()
Additional information detected for the word.
.google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
boolean hasBoundingBox()
The bounding box for the word. The vertices are in the order of top-left, top-right, bottom-right, bottom-left. When a rotation of the bounding box is detected the rotation is represented as around the top-left corner as defined when the text is read in the 'natural' orientation. For example: * when the text is horizontal it might look like: 0----1 | | 3----2 * when it's rotated 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the vertice order will still be (0, 1, 2, 3).
.google.cloud.vision.v1.BoundingPoly bounding_box = 2;
BoundingPoly getBoundingBox()
The bounding box for the word. The vertices are in the order of top-left, top-right, bottom-right, bottom-left. When a rotation of the bounding box is detected the rotation is represented as around the top-left corner as defined when the text is read in the 'natural' orientation. For example: * when the text is horizontal it might look like: 0----1 | | 3----2 * when it's rotated 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the vertice order will still be (0, 1, 2, 3).
.google.cloud.vision.v1.BoundingPoly bounding_box = 2;
BoundingPolyOrBuilder getBoundingBoxOrBuilder()
The bounding box for the word. The vertices are in the order of top-left, top-right, bottom-right, bottom-left. When a rotation of the bounding box is detected the rotation is represented as around the top-left corner as defined when the text is read in the 'natural' orientation. For example: * when the text is horizontal it might look like: 0----1 | | 3----2 * when it's rotated 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the vertice order will still be (0, 1, 2, 3).
.google.cloud.vision.v1.BoundingPoly bounding_box = 2;
java.util.List<Symbol> getSymbolsList()
List of symbols in the word. The order of the symbols follows the natural reading order.
repeated .google.cloud.vision.v1.Symbol symbols = 3;
Symbol getSymbols(int index)
List of symbols in the word. The order of the symbols follows the natural reading order.
repeated .google.cloud.vision.v1.Symbol symbols = 3;
int getSymbolsCount()
List of symbols in the word. The order of the symbols follows the natural reading order.
repeated .google.cloud.vision.v1.Symbol symbols = 3;
java.util.List<? extends SymbolOrBuilder> getSymbolsOrBuilderList()
List of symbols in the word. The order of the symbols follows the natural reading order.
repeated .google.cloud.vision.v1.Symbol symbols = 3;
SymbolOrBuilder getSymbolsOrBuilder(int index)
List of symbols in the word. The order of the symbols follows the natural reading order.
repeated .google.cloud.vision.v1.Symbol symbols = 3;
float getConfidence()
Confidence of the OCR results for the word. Range [0, 1].
float confidence = 4;