Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/amazon-web-services/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Amazon web services Amazon Rekognition-检测人脸-不返回所有属性_Amazon Web Services_Amazon Rekognition - Fatal编程技术网

Amazon web services Amazon Rekognition-检测人脸-不返回所有属性

Amazon web services Amazon Rekognition-检测人脸-不返回所有属性,amazon-web-services,amazon-rekognition,Amazon Web Services,Amazon Rekognition,我正在从PostMan调用Amazon Rekognition Detect faces API。我将图像作为base64传递,将“Attributes”作为[“ALL”]传递 }请编辑问题,向我们显示您实际调用Rekognion的代码?这样,我们可以尝试重现这种情况。谢谢你。@JohnRotenstein-我是从邮递员那里打来的。 { "Image": { "Attributes": ["ALL"], "Bytes": <base64 image> } } { "FaceDet

我正在从PostMan调用Amazon Rekognition Detect faces API。我将图像作为base64传递,将“Attributes”作为[“ALL”]传递


}

请编辑问题,向我们显示您实际调用Rekognion的代码?这样,我们可以尝试重现这种情况。谢谢你。@JohnRotenstein-我是从邮递员那里打来的。
{
"Image": {
"Attributes":  ["ALL"],
"Bytes": <base64 image>
}
}
{
"FaceDetails": [
    {
        "BoundingBox": {
            "Height": 0.49429410696029663,
            "Left": 0.35876789689064026,
            "Top": 0.15820752084255219,
            "Width": 0.3210359811782837
        },
        "Confidence": 100.0,
        "Landmarks": [
            {
                "Type": "eyeLeft",
                "X": 0.4103875756263733,
                "Y": 0.35949569940567017
            },
            {
                "Type": "eyeRight",
                "X": 0.5616039037704468,
                "Y": 0.3441786468029022
            },
            {
                "Type": "mouthLeft",
                "X": 0.4385274350643158,
                "Y": 0.5330458879470825
            },
            {
                "Type": "mouthRight",
                "X": 0.5625125169754028,
                "Y": 0.5202205181121826
            },
            {
                "Type": "nose",
                "X": 0.48630291223526,
                "Y": 0.436920166015625
            }
        ],
        "Pose": {
            "Pitch": 8.636483192443848,
            "Roll": -5.8078813552856445,
            "Yaw": -3.338975429534912
        },
        "Quality": {
            "Brightness": 82.37736511230469,
            "Sharpness": 83.14741516113281
        }
    }
]