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

com.aiwiown.face.domain.orc.OCRTemplateInfoV1Value 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.ApiListField;

import java.util.List;

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

    private static final long serialVersionUID = 7035383277252127218L;
    /**
     * 值
     */
    @ApiListField("text")
    private List text;
    /**
     * 坐标信息
     */
    @ApiListField("position")
    private List position;

    public List getText() {
        return text;
    }

    public void setText(List text) {
        this.text = text;
    }

    public List getPosition() {
        return position;
    }

    public void setPosition(List position) {
        this.position = position;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy