Example usage for com.amazonaws.services.rekognition.model Label getName

List of usage examples for com.amazonaws.services.rekognition.model Label getName

Introduction

In this page you can find the example usage for com.amazonaws.services.rekognition.model Label getName.

Prototype


public String getName() 

Source Link

Document

The name (label) of the object or scene.

Usage

From source file:org.nuxeo.vision.aws.AmazonRekognitionResponse.java

License:Apache License

public AmazonRekognitionResponse(DetectLabelsResult response) {
    this.response = response;
    for (Label label : response.getLabels()) {
        labels.add(new TextEntity(label.getName(), label.getConfidence(), "en_US"));
    }/*from w ww  .j  ava  2  s.  c o m*/
}