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

Method GetWords

src/pkgDm/Dm2Java.java:2212–2214  ·  view source on GitHub ↗

根据指定的范围,以及设定好的词组识别参数(一般不用更改,除非你真的理解了) 识别这个范围内所有满足条件的词组. 比较适合用在未知文字的情况下,进行不定识别. @param x1 左上角X坐标 @param y1 左上角Y坐标 @param x2 右下角X坐标 @param y2 右下角Y坐标 @param color 颜色格式串.注意,RGB和HSV格式都支持. @param sim 相似度 0.1-1.0 @return 识别到的格式串,要用到专用函数来解析

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

Source from the content-addressed store, hash-verified

2210 * @return 识别到的格式串,要用到专用函数来解析
2211 */
2212 public String GetWords(int x1,int y1,int x2,int y2,String color,double sim){
2213 return Dispatch.call(dm,"GetWords",x1, y1, x2, y2, color, sim).getString();
2214 }
2215
2216 /**
2217 * 根据指定的范围,以及设定好的词组识别参数(一般不用更改,除非你真的理解了)<br/>

Callers

nothing calls this directly

Calls 2

callMethod · 0.95
getStringMethod · 0.45

Tested by

no test coverage detected