# Reset Multiple Horizontal Seam Correction Coefs

This API can be used to reset the coefficients of the specified horizontal seams.

# Request Path

{CLTPlatform-ip}:8086/advancedSeam/resetMultiHorizontalSeamSeamCoef

  • Replace {CLTPlatform-ip} with the corresponding IP address.
  • The request port is 8086.

# Protocol

HTTP

# Method

POST

# Request Parameters

  • Set the Content-Type of the request body to application/json.
Parameter Name Description Required Type Data Dictionary Restriction Example
command Command type Yes [string] advancedSeam/resetMultiHorizontalSeamSeamCoef
data Data Yes [object]
data>>horizontalSeamArray An array of the horizontal seam coefficients Yes [array]
data>>horizontalSeamArray>>x x Yes [int]
data>>horizontalSeamArray>>y y Yes [int]
data>>horizontalSeamArray>>width Width Yes [int]
data>>horizontalSeamArray>>length Length Yes [int]
data>>horizontalSeamArray>>containReceiverArray An array of receivers involved Yes [array]
data>>horizontalSeamArray>>containReceiverArray>>processorIndex Sender index (starts from 0) Yes [int] 0
data>>horizontalSeamArray>>containReceiverArray>>portIndex Network port index Yes [int] 0
data>>horizontalSeamArray>>containReceiverArray>>receiverIndex Receiver card index Yes [int] 0

# Request Example

{
    "command": "advancedSeam/resetMultiHorizontalSeamSeamCoef",
    "data": {
        "horizontalSeamArray": [{
            "x": 0,
            "y": 0,
            "width": 0,
            "length": 0,
            "containReceiverArray": [{
                "processorIndex": 0,
                "portIndex": 0,
                "receiverIndex": 0
            }]
        }]
    }
}

# Response

Parameter Name Description Required Type Data Dictionary Restriction Example
command Command type Yes [string] advancedSeam/resetHorizontalSeamSeamCoef
code Status code Yes [int] 20000
message Message Yes [string] Common_Success
data Data Yes [object]

# Response Example

{
    "command": "advancedSeam/resetHorizontalSeamSeamCoef",
    "code": 20000,
    "message": "Common_Success",
    "data": {}
}

# Detailed Description