All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aiwiown.face.domain.orc.OCRTemplateInfoV1 Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.domain.orc;

import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;

/**
 * @ClassName : OCRTemplateInfo face++
 * @Description : 模板识别
 * @Author : dbin0123
 */
public class OCRTemplateInfoV1 extends ApiObject {

    private static final long serialVersionUID = 9048513126196093797L;
    /**
     * 创建模板时定义的识别域名
     */
    @ApiField("key")
    private String key;

    /**
     * 识别结果。包括一个text字段,说明如下:
     * text:表示识别的结果,以列表格式返回,每个元素表示一行的识别结果。
     * position:当请求的extra_info为position时,返回识别域四个点的坐标。以列表格式返回,每个元素表示一个点的坐标[x,y]
     */
    @ApiField("value")
    private OCRTemplateInfoV1Value value;

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public OCRTemplateInfoV1Value getValue() {
        return value;
    }

    public void setValue(OCRTemplateInfoV1Value value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy