All Products
Search
Document Center

Intelligent Media Management:DetectImageBodies

Last Updated:Dec 11, 2024

Detects human body information, such as the confidence level and body bounding box, in an image.

Operation description

  • Before you call this operation, make sure that an Intelligent Media Management (IMM) project is created. For information about how to create a project, see CreateProject .
  • For information about the image encoding formats supported by this operation, see Limits on images.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
imm:DetectImageBodiesnone
*Project
acs:imm:{#regionId}:{#accountId}:project/{#ProjectName}
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
ProjectNamestringYes

The name of the project. You can obtain the name of the project from the response of the CreateProject operation.

test-project
SourceURIstringNo

The URI of the Object Storage Service (OSS) bucket in which the image file is stored.

Specify the value in the oss://${Bucket}/${Object} format. ${Bucket} specifies the name of the OSS bucket that resides in the same region as the current project. ${Object} specifies the complete path to the file that has an extension.

oss://test-bucket/test-object
SensitivityfloatNo

The accuracy level of detecting and recognizing specific content in the image. Valid values: 0 to 1. Default value: 0.6. A higher sensitivity specifies that more image details can be detected.

0.6
CredentialConfigCredentialConfigNo

If you do not have special requirements, leave this parameter empty.

The authorization chain. This parameter is optional. For more information, see Use authorization chains to access resources of other entities.

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

Bodiesarray

The human bodies.

BodiesBody

The human body.

RequestIdstring

The request ID.

501339F9-4B70-0CE2-AB8C-866C********

Examples

Sample success responses

JSONformat

{
  "Bodies": [
    {
      "Confidence": 0.75,
      "Boundary": {
        "Width": 200,
        "Height": 300,
        "Left": 10,
        "Top": 30,
        "Polygon": [
          {
            "X": 10,
            "Y": 10
          }
        ]
      }
    }
  ],
  "RequestId": "501339F9-4B70-0CE2-AB8C-866C********"
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history