Class DetectResult
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.vision.computervision.models.DetectResult
-
public class DetectResult extends Object
Result of a DetectImage call.
-
-
Constructor Summary
Constructors Constructor Description DetectResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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 Detail
-
objects
public List<DetectedObject> objects()
Get the objects value.- Returns:
- the objects value
-
requestId
public String requestId()
Get the requestId value.- Returns:
- the requestId value
-
withRequestId
public DetectResult withRequestId(String requestId)
Set the requestId value.- Parameters:
requestId
- the requestId value to set- Returns:
- the DetectResult object itself.
-
metadata
public ImageMetadata metadata()
Get the metadata value.- Returns:
- the metadata value
-
withMetadata
public DetectResult withMetadata(ImageMetadata metadata)
Set the metadata value.- Parameters:
metadata
- the metadata value to set- Returns:
- the DetectResult object itself.
-
modelVersion
public String modelVersion()
Get the modelVersion value.- Returns:
- the modelVersion value
-
withModelVersion
public DetectResult withModelVersion(String modelVersion)
Set the modelVersion value.- Parameters:
modelVersion
- the modelVersion value to set- Returns:
- the DetectResult object itself.
-
-