RapidAI / RapidOcrNcnn

RapidOCR ncnn 推理
Apache License 2.0
48 stars 5 forks source link

angeleIndex angleScore angleTime字段含义。 #7

Closed brokensword2018 closed 6 months ago

brokensword2018 commented 6 months ago

struct TextBlock { std::vector boxPoint; float boxScore; int angleIndex; float angleScore; double angleTime; std::string text; std::vector charScores; double crnnTime; double blockTime; };

大佬, TextBlock结构体中,三个angle相关的字段含义表示什么呢。没有找到相关文档说明。

benjaminwan commented 6 months ago

angleIndex=0代表此行是正的,angleIndex=1代表此行是反的 angleScore是结果的置信度 angleTime是所花的时间

brokensword2018 commented 6 months ago

感谢