File Coverage

blib/lib/Paws/Rekognition/DetectFacesResponse.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::DetectFacesResponse;
3 1     1   316 use Moose;
  1         4  
  1         6  
4             has FaceDetails => (is => 'ro', isa => 'ArrayRef[Paws::Rekognition::FaceDetail]');
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::DetectFacesResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 FaceDetails => ArrayRef[L<Paws::Rekognition::FaceDetail>]
19              
20             Details of each face found in the image.
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             image orientation. The bounding box coordinates returned in
28             C<FaceDetails> represent face locations before the image orientation is
29             corrected.
30              
31             If the input image is in .jpeg format, it might contain exchangeable
32             image (Exif) metadata that includes the image's orientation. If so, and
33             the Exif metadata for the input image populates the orientation field,
34             the value of C<OrientationCorrection> is null and the C<FaceDetails>
35             bounding box coordinates represent face locations after Exif metadata
36             is used to correct the image orientation. Images in .png format don't
37             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;