Class ImageBoundingBox

java.lang.Object
com.azure.ai.vision.imageanalysis.models.ImageBoundingBox

public final class ImageBoundingBox extends Object
A basic rectangle specifying a sub-region of the image.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Get the height property: Height of the area, in pixels.
    int
    Get the width property: Width of the area, in pixels.
    int
    Get the x property: X-coordinate of the top left point of the area, in pixels.
    int
    Get the y property: Y-coordinate of the top left point of the area, in pixels.
    Returns a compact string containing the bounding box values in a style suitable for printing.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Method Details

    • getX

      public int getX()
      Get the x property: X-coordinate of the top left point of the area, in pixels.
      Returns:
      the x value.
    • getY

      public int getY()
      Get the y property: Y-coordinate of the top left point of the area, in pixels.
      Returns:
      the y value.
    • getWidth

      public int getWidth()
      Get the width property: Width of the area, in pixels.
      Returns:
      the width value.
    • getHeight

      public int getHeight()
      Get the height property: Height of the area, in pixels.
      Returns:
      the height value.
    • toString

      public String toString()
      Returns a compact string containing the bounding box values in a style suitable for printing.
      Overrides:
      toString in class Object
      Returns:
      a string containing the bounding box values.