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

com.hn.ocr.OcrPlatform Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.ocr;


import com.hn.ocr.qcloud.QcloudOcr;

public enum OcrPlatform {

    /** 腾讯云 */
    Q_CLOUD {
        @Override
        public Ocr create() {
            return new QcloudOcr();
        }
    };

    /**
     *  创建ocr实现类对象
     * @return Ocr ocr实现类
     */
    protected abstract Ocr create();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy