Picture Text Recognition
Some3C.com β A Professional Solution for iOS Development and Testing
1.Take a screenshot
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/pic/screenshot
Request function name
id
String
Device ID
Multiple is not allowed
binary
Boolean
If true, returns binary data.
By default, json is used for return
jpg
Boolean
If true, returns the jpg format
Default bmp format
rect
Integer Array
Leave full screen blank
Left x, Up y, Right x, Down y
save_path
String
Save to local path
If left blank, return using memory stream or json
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
When the binary parameter is true, this json will not be returned, and the binary image data will be returned directly
Response data field description
Fields
illustrate
Remark
jpg
-
-
binary
-
-
rect
-
-
image
Image data
If save_path is used, the image path is returned, otherwise the base64 string image data
2.General image search
Calling
This image search mode is exactly the same as DM
Request Parameters
parameter
type
illustrate
Remark
fun
String
/pic/find-image
Request function name
id
String
Device ID
Multiple is not allowed
target_img
String
Big picture of goal
Generally, you don't need to fill it in. Our internal screen image will be used by default.
delta_color
String
Color Cast
Reference DM
all
Boolean
Have you found all?
false will only return one of the images in the list, true will find all the images in the list
direction
String
Find directions
Reference DM
img_list
String Array
Thumbnail
Base64 string image list or local path list
rect
Integer Array
Find Region
Left x, Up y, Right x, Down y
similarity
Floating point numbers
Similarity
Greater than 0 and less than 1
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data field description
Fields
illustrate
Remark
index
index
The first picture is found, starting from 0
centre
Find the center point of the image
x and y
rect
Find the rectangular region of an image
Left x, Up y, Right x, Down y
3.OpenCV Image Search
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/pic/find-image-cv
Request function name
id
String
Device ID
Multiple is not allowed
target_img
String
Big picture of goal
Generally, you don't need to fill it in. Our internal screen image will be used by default.
same
Boolean
Do you want to find the same image?
If true, all the same images in the image will be found
all
Boolean
Have you found all?
false will only return one of the images in the list, true will find all the images in the list
img_list
String Array
Thumbnail
Base64 string image list or local path list
rect
Integer Array
Find Region
Left x, Up y, Right x, Down y
similarity
Floating point numbers
Similarity
Greater than 0 and less than 1
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data Data field description list returns a list of all found text
Fields
illustrate
Remark
index
index
The first picture is found, starting from 0
centre
Find the center point of the image
x and y
rect
Find the rectangular region of an image
Left x, Up y, Right x, Down y
4.OCR text recognition
Calling
There is also a function called /pic/ocr. The enhanced version of ocr recognition is more accurate, but it takes up more resources.
Request Parameters
parameter
type
illustrate
Remark
fun
String
/pic/ocr
Request function name
id
String
Device ID
Multiple is not allowed
target_img
String
Big picture of goal
Generally, you don't need to fill it in. Our internal screen image will be used by default.
rect
Integer Array
Find Region
Left x, Up y, Right x, Down y
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data Data field description list returns a list of all found text
Fields
illustrate
Remark
text
Recognized text
centre
The center point of the text
x and y
rect
Rectangular area of ββtext
Left x, Up y, Right x, Down y
similarity
Similarity
5.Find text
Calling
There is also a function called /pic/find-text-ex that uses an enhanced version of OCR that is more accurate but takes up more resources.
Request Parameters
parameter
type
illustrate
Remark
fun
String
/pic/find-text
Request function name
id
String
Device ID
Multiple is not allowed
target_img
String
Big picture of goal
Generally, you don't need to fill it in. Our internal screen image will be used by default.
rect
Integer Array
Find Region
Left x, Up y, Right x, Down y
similarity
Floating point numbers
Similarity
It is best to use OCR to recognize it once to see how similar it is.
contain
Boolean
Contains
text
String Array
The text array to be searched
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data Data field description list returns a list of all found text
Fields
illustrate
Remark
text
Recognized text
centre
The center point of the text
x and y
rect
Rectangular area of ββtext
Left x, Up y, Right x, Down y
similarity
Similarity
6.Find Multi Color
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/pic/find-multi-color
Request function name
id
String
Device ID
Multiple is not allowed
target_img
String
Big picture of goal
Generally, you don't need to fill it in. Our internal screen image will be used by default.
same
Boolean
Do you want to find the same image?
If true, all the same color tables in the image will be found
all
Boolean
Have you found all?
false will return only one of the colors in the list, true will find all the colors in the list
list
json object array
-
-
Parameter description of json object array in list:
parameter
type
illustrate
Remark
first_color
String
The color table being searched
-
rect
Integer Array
Find Region
Left x, top y, right x, bottom y are empty and search in full screen
similarity
Floating point numbers
Similarity
-
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data Data field description list returns a list of all found text
Fields
illustrate
Remark
index
index
The first color search configuration is found, starting from 0
centre
Find the center point of the image
x and y
Last updated