MCPcopy Create free account
hub / github.com/HelloBush/Java_MHXYdemo / GetWordsNoDict

Method GetWordsNoDict

src/pkgDm/Dm2Java.java:2226–2228  ·  view source on GitHub ↗

根据指定的范围,以及设定好的词组识别参数(一般不用更改,除非你真的理解了) 识别这个范围内所有满足条件的词组. 这个识别函数不会用到字库。只是识别大概形状的位置 @param x1 左上角X坐标 @param y1 左上角Y坐标 @param x2 右下角X坐标 @param y2 右下角Y坐标 @param color 颜色格式串.注意,RGB和HSV格式都支持. @return 识别到的格式串,要用到专用函数来解析

(int x1,int y1,int x2,int y2,String color)

Source from the content-addressed store, hash-verified

2224 * @return 识别到的格式串,要用到专用函数来解析
2225 */
2226 public String GetWordsNoDict(int x1,int y1,int x2,int y2,String color){
2227 return Dispatch.call(dm,"GetWordsNoDict",x1, y1, x2, y2, color).getString();
2228 }
2229
2230 /**
2231 * 识别屏幕范围(x1,y1,x2,y2)内符合color_format的字符串,并且相似度为sim,sim取值范围(0.1-1.0),<br/>

Callers

nothing calls this directly

Calls 2

callMethod · 0.95
getStringMethod · 0.45

Tested by

no test coverage detected