Aracılığıyla paylaş


ImageBoundingBox Class

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

public final class ImageBoundingBox

A basic rectangle specifying a sub-region of the image.

Method Summary

Modifier and Type Method and Description
int getHeight()

Get the height property: Height of the area, in pixels.

int getWidth()

Get the width property: Width of the area, in pixels.

int getX()

Get the x property: X-coordinate of the top left point of the area, in pixels.

int getY()

Get the y property: Y-coordinate of the top left point of the area, in pixels.

String toString()

Returns a compact string containing the bounding box values in a style suitable for printing.

Methods inherited from java.lang.Object

Method Details

getHeight

public int getHeight()

Get the height property: Height of the area, in pixels.

Returns:

the height value.

getWidth

public int getWidth()

Get the width property: Width of the area, in pixels.

Returns:

the width value.

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.

toString

public String toString()

Returns a compact string containing the bounding box values in a style suitable for printing.

Overrides:

ImageBoundingBox.toString()

Returns:

a string containing the bounding box values.

Applies to