File Coverage

blib/lib/Paws/Rekognition/DetectLabelsResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Rekognition::DetectLabelsResponse;
3 1     1   662 use Moose;
  1         5  
  1         10  
4             has Labels => (is => 'ro', isa => 'ArrayRef[Paws::Rekognition::Label]');
5             has OrientationCorrection => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Rekognition::DetectLabelsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Labels => ArrayRef[L<Paws::Rekognition::Label>]
19              
20             An array of labels for the real-world objects detected.
21              
22              
23             =head2 OrientationCorrection => Str
24              
25             The orientation of the input image (counter-clockwise direction). If
26             your application displays the image, you can use this value to correct
27             the orientation. If Amazon Rekognition detects that the input image was
28             rotated (for example, by 90 degrees), it first corrects the orientation
29             before detecting the labels.
30              
31             If the input image Exif metadata populates the orientation field,
32             Amazon Rekognition does not perform orientation correction and the
33             value of OrientationCorrection will be null.
34              
35             Valid values are: C<"ROTATE_0">, C<"ROTATE_90">, C<"ROTATE_180">, C<"ROTATE_270">
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;