次の方法で共有


OcrWord クラス

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.vision.computervision.models.OcrWord

public class OcrWord

認識された単語に関する情報。

メソッドの概要

修飾子と型 メソッドと説明
String boundingBox()

boundingBox 値を取得します。

String text()

テキスト値を取得します。

OcrWord withBoundingBox(String boundingBox)

boundingBox 値を設定します。

OcrWord withText(String text)

テキスト値を設定します。

メソッドの詳細

boundingBox

public String boundingBox()

boundingBox 値を取得します。

Returns:

boundingBox 値

text

public String text()

テキスト値を取得します。

Returns:

テキスト値

withBoundingBox

public OcrWord withBoundingBox(String boundingBox)

boundingBox 値を設定します。

Parameters:

boundingBox - 設定する boundingBox 値

Returns:

OcrWord オブジェクト自体。

withText

public OcrWord withText(String text)

テキスト値を設定します。

Parameters:

text - 設定するテキスト値

Returns:

OcrWord オブジェクト自体。

適用対象