File Coverage

blib/lib/Paws/Rekognition/IndexFacesResponse.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::IndexFacesResponse;
3 1     1   460 use Moose;
  1         3  
  1         8  
4             has FaceRecords => (is => 'ro', isa => 'ArrayRef[Paws::Rekognition::FaceRecord]');
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::IndexFacesResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 FaceRecords => ArrayRef[L<Paws::Rekognition::FaceRecord>]
19              
20             An array of faces detected and added to the collection. For more
21             information, see howitworks-index-faces.
22              
23              
24             =head2 OrientationCorrection => Str
25              
26             The orientation of the input image (counterclockwise direction). If
27             your application displays the image, you can use this value to correct
28             image orientation. The bounding box coordinates returned in
29             C<FaceRecords> represent face locations before the image orientation is
30             corrected.
31              
32             If the input image is in jpeg format, it might contain exchangeable
33             image (Exif) metadata. If so, and the Exif metadata populates the
34             orientation field, the value of C<OrientationCorrection> is null and
35             the bounding box coordinates in C<FaceRecords> represent face locations
36             after Exif metadata is used to correct the image orientation. Images in
37             .png format don't contain Exif metadata.
38              
39             Valid values are: C<"ROTATE_0">, C<"ROTATE_90">, C<"ROTATE_180">, C<"ROTATE_270">
40             =head2 _request_id => Str
41              
42              
43             =cut
44              
45             1;