DetectResult Class

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

public class DetectResult

Result of a DetectImage call.

Method Summary

Modifier and Type Method and Description
ImageMetadata metadata()

Get the metadata value.

String modelVersion()

Get the modelVersion value.

List<DetectedObject> objects()

Get the objects value.

String requestId()

Get the requestId value.

DetectResult withMetadata(ImageMetadata metadata)

Set the metadata value.

DetectResult withModelVersion(String modelVersion)

Set the modelVersion value.

DetectResult withRequestId(String requestId)

Set the requestId value.

Method Details

metadata

public ImageMetadata metadata()

Get the metadata value.

Returns:

the metadata value

modelVersion

public String modelVersion()

Get the modelVersion value.

Returns:

the modelVersion value

objects

public List objects()

Get the objects value.

Returns:

the objects value

requestId

public String requestId()

Get the requestId value.

Returns:

the requestId value

withMetadata

public DetectResult withMetadata(ImageMetadata metadata)

Set the metadata value.

Parameters:

metadata - the metadata value to set

Returns:

the DetectResult object itself.

withModelVersion

public DetectResult withModelVersion(String modelVersion)

Set the modelVersion value.

Parameters:

modelVersion - the modelVersion value to set

Returns:

the DetectResult object itself.

withRequestId

public DetectResult withRequestId(String requestId)

Set the requestId value.

Parameters:

requestId - the requestId value to set

Returns:

the DetectResult object itself.

Applies to