你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Word 类
- java.
lang. Object - com.
microsoft. azure. cognitiveservices. vision. computervision. models. Word
- com.
public class Word
表示已识别单词的 对象。
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
List<Double> |
boundingBox()
获取 boundingBox 值。 |
double |
confidence()
获取置信度值。 |
String |
text()
获取文本值。 |
Word |
withBoundingBox(List<Double> boundingBox)
设置 boundingBox 值。 |
Word |
withConfidence(double confidence)
设置置信度值。 |
Word |
withText(String text)
设置文本值。 |
方法详细信息
boundingBox
public List
获取 boundingBox 值。
Returns:
boundingBox 值
confidence
public double confidence()
获取置信度值。
Returns:
置信度值
text
public String text()
获取文本值。
Returns:
文本值
withBoundingBox
public Word withBoundingBox(List
设置 boundingBox 值。
Parameters:
boundingBox
- 要设置的 boundingBox 值
Returns:
Word 对象本身。
withConfidence
public Word withConfidence(double confidence)
设置置信度值。
Parameters:
confidence
- 要设置的置信度值
Returns:
Word 对象本身。
withText
public Word withText(String text)
设置文本值。
Parameters:
text
- 要设置的文本值
Returns:
Word 对象本身。