Skip to content

Commit d566884

Browse files
committed
fixed doxygen attempt to fix IOS and visual studio warnings
1 parent b7a7600 commit d566884

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/text/include/opencv2/text/ocr.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,8 @@ class CV_EXPORTS_W OCRHolisticWordRecognizer : public BaseOCR
573573
574574
@param image Input image CV_8UC1 or CV_8UC3
575575
576+
@param mask is totally ignored and is only available for compatibillity reasons
577+
576578
@param output_text Output text of the the word spoting, always one that exists in the dictionary.
577579
578580
@param component_rects Not applicable for word spotting can be be NULL if not, a single elemnt will
@@ -585,8 +587,6 @@ class CV_EXPORTS_W OCRHolisticWordRecognizer : public BaseOCR
585587
be put in the vector.
586588
587589
@param component_level must be OCR_LEVEL_WORD.
588-
589-
@param mask is totally ignored and is only available for compatibillity reasons
590590
*/
591591

592592
virtual void run(Mat& image, std::string& output_text, std::vector<Rect>* component_rects=NULL,
@@ -613,7 +613,7 @@ class CV_EXPORTS_W OCRHolisticWordRecognizer : public BaseOCR
613613
@brief Method that provides a quick and simple interface to a multiple word image classifcation taking advantage
614614
the classifiers parallel capabilities.
615615
616-
@param inputImage an list of images expected to be a CV_U8C1 or CV_U8C3 each image can be of any size and is assumed
616+
@param inputImageList an list of images expected to be a CV_U8C1 or CV_U8C3 each image can be of any size and is assumed
617617
to contain a single word.
618618
619619
@param transcriptions a vector of opencv strings that will store the detected word transcriptions, one for each

modules/text/samples/dictnet_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import cv2
44
import sys
55
import os.path
6-
6+
77
#Global variable shared between the Mouse callback and main
88
refPt = []
99
cropping = False

0 commit comments

Comments
 (0)