帮助中心
当前位置: 首页 > 帮助中心 > 公开AIP接口
图像识别接口-屏幕指定坐标区域查找颜色
发布日期:2022-06-28阅读次数:0

2.屏幕指定坐标区域查找颜色

名称

必选

类型

说明

Action

FindPicturePointArea

String

任务值不可更改

ColorR

颜色R值

Int

颜色R值

ColorG

颜色G值

Int

颜色G值

ColorB

颜色B值

Int

颜色B值

ColorErrorValue

颜色容错值

Int

R、G、B上下偏差提高颜色容错

X1

坐标X值

Int

指定区域坐上角坐标点X值

Y1

坐标Y值

Int

指定区域坐上角坐标点Y值

AreaWidth

区域宽度

Int

基于区域原点的区域宽度

AreaHeight

区域高度

Int

基于区域原点的区域高度

Devices

Device[]

Device[]

要执行的手机

 

发送示例:

{

"Action": "FindColorPointArea",

"ColorR":34,

"ColorR": 234,

"ColorR": 152,

"ColorErrorValue": 0,

 

"X1": 10,

"Y1": 20,

"AreaWidth": 200,

"AreaHeight": 300,

"Devices": [

             {

                "Key":"1095cc81"

             },

             {

                "Key":"10a5cc1c"

             }

             ]

}

返回Json值:

{

"Action":"FindColorPointArea",

"Success":true,//执行成功

"Devices":[

             {

               "Key":"1095cc81",//手机序列号

               "Result":(12,45),//第一个匹配的坐标点

               "IsDone":true,//手机执行任务完成

             },

             {

               "Key":"10a5cc1c",//手机序列号       

               "Result":(42,75),//第一个匹配的坐标点

               "IsDone":true,//手机执行任务完成

              }

          ]

}