change recognizer output format
This commit is contained in:
@@ -11,8 +11,9 @@ namespace uns
|
||||
using VecFloat = std::vector<float>;
|
||||
using IONames = std::vector<const char*>;
|
||||
using IONamesStorage = std::vector<std::string>;
|
||||
using EOCR_Result = std::pair<std::wstring, float>;
|
||||
using EOCR_ResultSet = std::map<size_t, EOCR_Result>;
|
||||
using EOCR_Result = std::tuple<std::wstring, float>;
|
||||
using EOCR_Result_Single = std::tuple<std::wstring, float, cv::Rect>;
|
||||
using EOCR_ResultSet = std::map<size_t, EOCR_Result_Single>;
|
||||
using EOCRD_Rects = std::vector<std::vector<cv::Point2f>>;
|
||||
|
||||
class OCRToolBox
|
||||
|
||||
Reference in New Issue
Block a user