deepin-ocr/src/tessocrutils/tessocrutils.h

263 lines
6.0 KiB
C
Raw Normal View History

/*
* Copyright (C) 2019 ~ 2019 Deepin Technology Co., Ltd.
*
* Author: wangcong <wangcong@uniontech.com>
*
* Maintainer: wangcong <wangcong@uniontech.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TESSOCRUTILS_H
#define TESSOCRUTILS_H
//本项目的文件
//dtk的类
//qt的类
#include <QDebug>
#include <QException>
#include <QFileInfo>
#include <QImage>
//其他库
#include <tesseract/baseapi.h>
#include <leptonica/allheaders.h>
/**
* @brief
*/
enum ResultType{
RESULT_STRING = 1, //纯字符串结果
RESULT_HTML = 2, //HTML文本
UNKNOWN_TYPE = -1 //XML文本
};
/**
* @brief
*/
enum ErrorCode{
OK = 1, //成功
UNKNOWN = -1, //未知错误
OCR_P_NULL = 101, //文件路径为空
OCR_RT_NULL = 102, //结果字符串类型不存在
OCR_INI_F = 103, //ocr三方库初始化失败
OCR_LI_F = 104, //OCR加载图片失败
OCR_RI_F = 105 //OCR识别图片失败
};
/**
* @brief
*/
enum Languages{
UNKNOWN_LAN = -1, //未知语言
CHI_SIM=1, //简体中文
CHI_TRA=2, //繁体中文
ENG=3 //英文
};
/**
* @brief ocr识别的返回结果
*/
struct RecognitionResult{
/**
* @brief
*/
bool flag;
/**
* @brief
*/
QString message;
/**
* @brief
*/
ErrorCode errorCode;
/**
* @brief
*/
ResultType resultType;
/**
* @brief
*/
QString result;
RecognitionResult(){
flag = false;
message.clear();
errorCode = ErrorCode::UNKNOWN;
resultType = ResultType::RESULT_STRING;
result.clear();
}
};
/**
* @brief ocr接口工具
* 使: *
* 1. TessOcrUtils::instance()->getRecogitionResult(t_image);
*/
class TessOcrUtils
{
public:
TessOcrUtils();
~TessOcrUtils();
static TessOcrUtils *instance();
/**
* @brief
* @param
* @param
* @return resultType类型的字符串结果
*/
RecognitionResult getRecogitionResult(const QString &imagePath,const ResultType &resultType);
/**
* @brief
* @param
* @return
*/
RecognitionResult getRecogitionResult(const QString &imagePath);
/**
* @brief
* @param
* @param
* @return resultType类型的字符串结果
*/
RecognitionResult getRecogitionResult(QImage *image,const ResultType &resultType);
/**
* @brief
* @param
* @return
*/
RecognitionResult getRecogitionResult(QImage *image);
/**
* @brief
* @return true false
*/
bool isRunning();
private :
/**
* @brief 使
* @param 使
* @return
*/
//bool setLanguages(const QList<Languages> langs);
/**
* @brief 使
* @param
* @return
*/
bool setLanguagesPath(const QString langsPath);
/**
* @brief
* @param
* @return true
*/
bool isExistsResultType(ResultType resultType);
/**
* @brief
* @param
* @return true
*/
bool isExistsLanguage(Languages lang);
/**
* @brief
* @param
* @return
*/
QString getLangStr(Languages lang);
/**
* @brief
* @return
*/
Languages getSystemLang();
/**
* @brief 使
* @param 使
* @return
*/
QString getLanguages();
/**
* @brief
* @param
* @param
* @return
*/
RecognitionResult getRecognizeResult(Pix * image,ResultType resultType);
/**
* @brief ,使
* @param
* @param
* @param
*/
void setResult(ErrorCode errCode, const QString errMessage,const ResultType resultType,RecognitionResult &result);
/**
* @brief
*/
QString m_sTessdataPath;
/**
* @brief
*/
QString m_sLangs;
/**
* @brief
*/
bool m_isRunning;
static TessOcrUtils *m_tessOcrUtils;
static tesseract::TessBaseAPI *t_Tesseract;
};
#endif // TESSOCRUTILS_H