File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
modules/text/include/opencv2/text Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ class CV_EXPORTS_W OCRTesseract : public BaseOCR
165
165
166
166
@param component_level OCR_LEVEL_WORD (by default), or OCR_LEVEL_TEXT_LINE.
167
167
*/
168
+ using BaseOCR::run;
168
169
virtual void run (Mat& image, std::string& output_text,
169
170
std::vector<Rect>* component_rects=NULL ,
170
171
std::vector<std::string>* component_texts=NULL ,
@@ -285,6 +286,7 @@ class CV_EXPORTS_W OCRHMMDecoder : public BaseOCR {
285
286
286
287
* @param component_level Only OCR_LEVEL_WORD is supported.
287
288
*/
289
+ using BaseOCR::run;
288
290
virtual void run (Mat& image, std::string& output_text,
289
291
std::vector<Rect>* component_rects=NULL ,
290
292
std::vector<std::string>* component_texts=NULL ,
@@ -542,6 +544,7 @@ class CV_EXPORTS_W OCRBeamSearchDecoder : public BaseOCR{
542
544
543
545
@param component_level Only OCR_LEVEL_WORD is supported.
544
546
*/
547
+ using BaseOCR::run;
545
548
virtual void run (Mat& image, std::string& output_text, std::vector<Rect>* component_rects=NULL ,
546
549
std::vector<std::string>* component_texts=NULL , std::vector<float >* component_confidences=NULL ,
547
550
int component_level=0 );
You can’t perform that action at this time.
0 commit comments