ocr.hpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. /*M//////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  16. // Third party copyrights are property of their respective owners.
  17. //
  18. // Redistribution and use in source and binary forms, with or without modification,
  19. // are permitted provided that the following conditions are met:
  20. //
  21. // * Redistribution's of source code must retain the above copyright notice,
  22. // this list of conditions and the following disclaimer.
  23. //
  24. // * Redistribution's in binary form must reproduce the above copyright notice,
  25. // this list of conditions and the following disclaimer in the documentation
  26. // and/or other materials provided with the distribution.
  27. //
  28. // * The name of the copyright holders may not be used to endorse or promote products
  29. // derived from this software without specific prior written permission.
  30. //
  31. // This software is provided by the copyright holders and contributors "as is" and
  32. // any express or implied warranties, including, but not limited to, the implied
  33. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  34. // In no event shall the Intel Corporation or contributors be liable for any direct,
  35. // indirect, incidental, special, exemplary, or consequential damages
  36. // (including, but not limited to, procurement of substitute goods or services;
  37. // loss of use, data, or profits; or business interruption) however caused
  38. // and on any theory of liability, whether in contract, strict liability,
  39. // or tort (including negligence or otherwise) arising in any way out of
  40. // the use of this software, even if advised of the possibility of such damage.
  41. //
  42. //M*/
  43. #ifndef __OPENCV_TEXT_OCR_HPP__
  44. #define __OPENCV_TEXT_OCR_HPP__
  45. #include <vector>
  46. #include <string>
  47. namespace cv
  48. {
  49. namespace text
  50. {
  51. //! @addtogroup text_recognize
  52. //! @{
  53. enum
  54. {
  55. OCR_LEVEL_WORD,
  56. OCR_LEVEL_TEXTLINE
  57. };
  58. //base class BaseOCR declares a common API that would be used in a typical text recognition scenario
  59. class CV_EXPORTS_W BaseOCR
  60. {
  61. public:
  62. virtual ~BaseOCR() {};
  63. virtual void run(Mat& image, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  64. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  65. int component_level=0) = 0;
  66. virtual void run(Mat& image, Mat& mask, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  67. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  68. int component_level=0) = 0;
  69. };
  70. /** @brief OCRTesseract class provides an interface with the tesseract-ocr API (v3.02.02) in C++.
  71. Notice that it is compiled only when tesseract-ocr is correctly installed.
  72. @note
  73. - (C++) An example of OCRTesseract recognition combined with scene text detection can be found
  74. at the end_to_end_recognition demo:
  75. <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/end_to_end_recognition.cpp>
  76. - (C++) Another example of OCRTesseract recognition combined with scene text detection can be
  77. found at the webcam_demo:
  78. <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
  79. */
  80. class CV_EXPORTS_W OCRTesseract : public BaseOCR
  81. {
  82. public:
  83. /** @brief Recognize text using the tesseract-ocr API.
  84. Takes image on input and returns recognized text in the output_text parameter. Optionally
  85. provides also the Rects for individual text elements found (e.g. words), and the list of those
  86. text elements with their confidence values.
  87. @param image Input image CV_8UC1 or CV_8UC3
  88. @param output_text Output text of the tesseract-ocr.
  89. @param component_rects If provided the method will output a list of Rects for the individual
  90. text elements found (e.g. words or text lines).
  91. @param component_texts If provided the method will output a list of text strings for the
  92. recognition of individual text elements found (e.g. words or text lines).
  93. @param component_confidences If provided the method will output a list of confidence values
  94. for the recognition of individual text elements found (e.g. words or text lines).
  95. @param component_level OCR_LEVEL_WORD (by default), or OCR_LEVEL_TEXT_LINE.
  96. */
  97. virtual void run(Mat& image, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  98. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  99. int component_level=0);
  100. virtual void run(Mat& image, Mat& mask, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  101. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  102. int component_level=0);
  103. // aliases for scripting
  104. CV_WRAP String run(InputArray image, int min_confidence, int component_level=0);
  105. CV_WRAP String run(InputArray image, InputArray mask, int min_confidence, int component_level=0);
  106. CV_WRAP virtual void setWhiteList(const String& char_whitelist) = 0;
  107. /** @brief Creates an instance of the OCRTesseract class. Initializes Tesseract.
  108. @param datapath the name of the parent directory of tessdata ended with "/", or NULL to use the
  109. system's default directory.
  110. @param language an ISO 639-3 code or NULL will default to "eng".
  111. @param char_whitelist specifies the list of characters used for recognition. NULL defaults to
  112. "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ".
  113. @param oem tesseract-ocr offers different OCR Engine Modes (OEM), by deffault
  114. tesseract::OEM_DEFAULT is used. See the tesseract-ocr API documentation for other possible
  115. values.
  116. @param psmode tesseract-ocr offers different Page Segmentation Modes (PSM) tesseract::PSM_AUTO
  117. (fully automatic layout analysis) is used. See the tesseract-ocr API documentation for other
  118. possible values.
  119. */
  120. CV_WRAP static Ptr<OCRTesseract> create(const char* datapath=NULL, const char* language=NULL,
  121. const char* char_whitelist=NULL, int oem=3, int psmode=3);
  122. };
  123. /* OCR HMM Decoder */
  124. enum decoder_mode
  125. {
  126. OCR_DECODER_VITERBI = 0 // Other algorithms may be added
  127. };
  128. /** @brief OCRHMMDecoder class provides an interface for OCR using Hidden Markov Models.
  129. @note
  130. - (C++) An example on using OCRHMMDecoder recognition combined with scene text detection can
  131. be found at the webcam_demo sample:
  132. <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
  133. */
  134. class CV_EXPORTS_W OCRHMMDecoder : public BaseOCR
  135. {
  136. public:
  137. /** @brief Callback with the character classifier is made a class.
  138. This way it hides the feature extractor and the classifier itself, so developers can write
  139. their own OCR code.
  140. The default character classifier and feature extractor can be loaded using the utility funtion
  141. loadOCRHMMClassifierNM and KNN model provided in
  142. <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRHMM_knn_model_data.xml.gz>.
  143. */
  144. class CV_EXPORTS_W ClassifierCallback
  145. {
  146. public:
  147. virtual ~ClassifierCallback() { }
  148. /** @brief The character classifier must return a (ranked list of) class(es) id('s)
  149. @param image Input image CV_8UC1 or CV_8UC3 with a single letter.
  150. @param out_class The classifier returns the character class categorical label, or list of
  151. class labels, to which the input image corresponds.
  152. @param out_confidence The classifier returns the probability of the input image
  153. corresponding to each classes in out_class.
  154. */
  155. virtual void eval( InputArray image, std::vector<int>& out_class, std::vector<double>& out_confidence);
  156. };
  157. public:
  158. /** @brief Recognize text using HMM.
  159. Takes binary image on input and returns recognized text in the output_text parameter. Optionally
  160. provides also the Rects for individual text elements found (e.g. words), and the list of those
  161. text elements with their confidence values.
  162. @param image Input binary image CV_8UC1 with a single text line (or word).
  163. @param output_text Output text. Most likely character sequence found by the HMM decoder.
  164. @param component_rects If provided the method will output a list of Rects for the individual
  165. text elements found (e.g. words).
  166. @param component_texts If provided the method will output a list of text strings for the
  167. recognition of individual text elements found (e.g. words).
  168. @param component_confidences If provided the method will output a list of confidence values
  169. for the recognition of individual text elements found (e.g. words).
  170. @param component_level Only OCR_LEVEL_WORD is supported.
  171. */
  172. virtual void run(Mat& image, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  173. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  174. int component_level=0);
  175. /** @brief Recognize text using HMM.
  176. Takes an image and a mask (where each connected component corresponds to a segmented character)
  177. on input and returns recognized text in the output_text parameter. Optionally
  178. provides also the Rects for individual text elements found (e.g. words), and the list of those
  179. text elements with their confidence values.
  180. @param image Input image CV_8UC1 or CV_8UC3 with a single text line (or word).
  181. @param mask Input binary image CV_8UC1 same size as input image. Each connected component in mask corresponds to a segmented character in the input image.
  182. @param output_text Output text. Most likely character sequence found by the HMM decoder.
  183. @param component_rects If provided the method will output a list of Rects for the individual
  184. text elements found (e.g. words).
  185. @param component_texts If provided the method will output a list of text strings for the
  186. recognition of individual text elements found (e.g. words).
  187. @param component_confidences If provided the method will output a list of confidence values
  188. for the recognition of individual text elements found (e.g. words).
  189. @param component_level Only OCR_LEVEL_WORD is supported.
  190. */
  191. virtual void run(Mat& image, Mat& mask, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  192. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  193. int component_level=0);
  194. // aliases for scripting
  195. CV_WRAP String run(InputArray image, int min_confidence, int component_level=0);
  196. CV_WRAP String run(InputArray image, InputArray mask, int min_confidence, int component_level=0);
  197. /** @brief Creates an instance of the OCRHMMDecoder class. Initializes HMMDecoder.
  198. @param classifier The character classifier with built in feature extractor.
  199. @param vocabulary The language vocabulary (chars when ascii english text). vocabulary.size()
  200. must be equal to the number of classes of the classifier.
  201. @param transition_probabilities_table Table with transition probabilities between character
  202. pairs. cols == rows == vocabulary.size().
  203. @param emission_probabilities_table Table with observation emission probabilities. cols ==
  204. rows == vocabulary.size().
  205. @param mode HMM Decoding algorithm. Only OCR_DECODER_VITERBI is available for the moment
  206. (<http://en.wikipedia.org/wiki/Viterbi_algorithm>).
  207. */
  208. static Ptr<OCRHMMDecoder> create(const Ptr<OCRHMMDecoder::ClassifierCallback> classifier,// The character classifier with built in feature extractor
  209. const std::string& vocabulary, // The language vocabulary (chars when ascii english text)
  210. // size() must be equal to the number of classes
  211. InputArray transition_probabilities_table, // Table with transition probabilities between character pairs
  212. // cols == rows == vocabulari.size()
  213. InputArray emission_probabilities_table, // Table with observation emission probabilities
  214. // cols == rows == vocabulari.size()
  215. decoder_mode mode = OCR_DECODER_VITERBI); // HMM Decoding algorithm (only Viterbi for the moment)
  216. CV_WRAP static Ptr<OCRHMMDecoder> create(const Ptr<OCRHMMDecoder::ClassifierCallback> classifier,// The character classifier with built in feature extractor
  217. const String& vocabulary, // The language vocabulary (chars when ascii english text)
  218. // size() must be equal to the number of classes
  219. InputArray transition_probabilities_table, // Table with transition probabilities between character pairs
  220. // cols == rows == vocabulari.size()
  221. InputArray emission_probabilities_table, // Table with observation emission probabilities
  222. // cols == rows == vocabulari.size()
  223. int mode = OCR_DECODER_VITERBI); // HMM Decoding algorithm (only Viterbi for the moment)
  224. protected:
  225. Ptr<OCRHMMDecoder::ClassifierCallback> classifier;
  226. std::string vocabulary;
  227. Mat transition_p;
  228. Mat emission_p;
  229. decoder_mode mode;
  230. };
  231. /** @brief Allow to implicitly load the default character classifier when creating an OCRHMMDecoder object.
  232. @param filename The XML or YAML file with the classifier model (e.g. OCRHMM_knn_model_data.xml)
  233. The KNN default classifier is based in the scene text recognition method proposed by Lukás Neumann &
  234. Jiri Matas in [Neumann11b]. Basically, the region (contour) in the input image is normalized to a
  235. fixed size, while retaining the centroid and aspect ratio, in order to extract a feature vector
  236. based on gradient orientations along the chain-code of its perimeter. Then, the region is classified
  237. using a KNN model trained with synthetic data of rendered characters with different standard font
  238. types.
  239. */
  240. CV_EXPORTS_W Ptr<OCRHMMDecoder::ClassifierCallback> loadOCRHMMClassifierNM(const String& filename);
  241. /** @brief Allow to implicitly load the default character classifier when creating an OCRHMMDecoder object.
  242. @param filename The XML or YAML file with the classifier model (e.g. OCRBeamSearch_CNN_model_data.xml.gz)
  243. The CNN default classifier is based in the scene text recognition method proposed by Adam Coates &
  244. Andrew NG in [Coates11a]. The character classifier consists in a Single Layer Convolutional Neural Network and
  245. a linear classifier. It is applied to the input image in a sliding window fashion, providing a set of recognitions
  246. at each window location.
  247. */
  248. CV_EXPORTS_W Ptr<OCRHMMDecoder::ClassifierCallback> loadOCRHMMClassifierCNN(const String& filename);
  249. //! @}
  250. /** @brief Utility function to create a tailored language model transitions table from a given list of words (lexicon).
  251. *
  252. * @param vocabulary The language vocabulary (chars when ascii english text).
  253. *
  254. * @param lexicon The list of words that are expected to be found in a particular image.
  255. *
  256. * @param transition_probabilities_table Output table with transition probabilities between character pairs. cols == rows == vocabulary.size().
  257. *
  258. * The function calculate frequency statistics of character pairs from the given lexicon and fills the output transition_probabilities_table with them. The transition_probabilities_table can be used as input in the OCRHMMDecoder::create() and OCRBeamSearchDecoder::create() methods.
  259. * @note
  260. * - (C++) An alternative would be to load the default generic language transition table provided in the text module samples folder (created from ispell 42869 english words list) :
  261. * <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRHMM_transitions_table.xml>
  262. **/
  263. CV_EXPORTS void createOCRHMMTransitionsTable(std::string& vocabulary, std::vector<std::string>& lexicon, OutputArray transition_probabilities_table);
  264. CV_EXPORTS_W Mat createOCRHMMTransitionsTable(const String& vocabulary, std::vector<cv::String>& lexicon);
  265. /* OCR BeamSearch Decoder */
  266. /** @brief OCRBeamSearchDecoder class provides an interface for OCR using Beam Search algorithm.
  267. @note
  268. - (C++) An example on using OCRBeamSearchDecoder recognition combined with scene text detection can
  269. be found at the demo sample:
  270. <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/word_recognition.cpp>
  271. */
  272. class CV_EXPORTS_W OCRBeamSearchDecoder : public BaseOCR
  273. {
  274. public:
  275. /** @brief Callback with the character classifier is made a class.
  276. This way it hides the feature extractor and the classifier itself, so developers can write
  277. their own OCR code.
  278. The default character classifier and feature extractor can be loaded using the utility funtion
  279. loadOCRBeamSearchClassifierCNN with all its parameters provided in
  280. <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRBeamSearch_CNN_model_data.xml.gz>.
  281. */
  282. class CV_EXPORTS_W ClassifierCallback
  283. {
  284. public:
  285. virtual ~ClassifierCallback() { }
  286. /** @brief The character classifier must return a (ranked list of) class(es) id('s)
  287. @param image Input image CV_8UC1 or CV_8UC3 with a single letter.
  288. @param recognition_probabilities For each of the N characters found the classifier returns a list with
  289. class probabilities for each class.
  290. @param oversegmentation The classifier returns a list of N+1 character locations' x-coordinates,
  291. including 0 as start-sequence location.
  292. */
  293. virtual void eval( InputArray image, std::vector< std::vector<double> >& recognition_probabilities, std::vector<int>& oversegmentation );
  294. int getWindowSize() {return 0;}
  295. int getStepSize() {return 0;}
  296. };
  297. public:
  298. /** @brief Recognize text using Beam Search.
  299. Takes image on input and returns recognized text in the output_text parameter. Optionally
  300. provides also the Rects for individual text elements found (e.g. words), and the list of those
  301. text elements with their confidence values.
  302. @param image Input binary image CV_8UC1 with a single text line (or word).
  303. @param output_text Output text. Most likely character sequence found by the HMM decoder.
  304. @param component_rects If provided the method will output a list of Rects for the individual
  305. text elements found (e.g. words).
  306. @param component_texts If provided the method will output a list of text strings for the
  307. recognition of individual text elements found (e.g. words).
  308. @param component_confidences If provided the method will output a list of confidence values
  309. for the recognition of individual text elements found (e.g. words).
  310. @param component_level Only OCR_LEVEL_WORD is supported.
  311. */
  312. virtual void run(Mat& image, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  313. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  314. int component_level=0);
  315. virtual void run(Mat& image, Mat& mask, std::string& output_text, std::vector<Rect>* component_rects=NULL,
  316. std::vector<std::string>* component_texts=NULL, std::vector<float>* component_confidences=NULL,
  317. int component_level=0);
  318. // aliases for scripting
  319. CV_WRAP String run(InputArray image, int min_confidence, int component_level=0);
  320. CV_WRAP String run(InputArray image, InputArray mask, int min_confidence, int component_level=0);
  321. /** @brief Creates an instance of the OCRBeamSearchDecoder class. Initializes HMMDecoder.
  322. @param classifier The character classifier with built in feature extractor.
  323. @param vocabulary The language vocabulary (chars when ascii english text). vocabulary.size()
  324. must be equal to the number of classes of the classifier.
  325. @param transition_probabilities_table Table with transition probabilities between character
  326. pairs. cols == rows == vocabulary.size().
  327. @param emission_probabilities_table Table with observation emission probabilities. cols ==
  328. rows == vocabulary.size().
  329. @param mode HMM Decoding algorithm. Only OCR_DECODER_VITERBI is available for the moment
  330. (<http://en.wikipedia.org/wiki/Viterbi_algorithm>).
  331. @param beam_size Size of the beam in Beam Search algorithm.
  332. */
  333. static Ptr<OCRBeamSearchDecoder> create(const Ptr<OCRBeamSearchDecoder::ClassifierCallback> classifier,// The character classifier with built in feature extractor
  334. const std::string& vocabulary, // The language vocabulary (chars when ascii english text)
  335. // size() must be equal to the number of classes
  336. InputArray transition_probabilities_table, // Table with transition probabilities between character pairs
  337. // cols == rows == vocabulari.size()
  338. InputArray emission_probabilities_table, // Table with observation emission probabilities
  339. // cols == rows == vocabulari.size()
  340. decoder_mode mode = OCR_DECODER_VITERBI, // HMM Decoding algorithm (only Viterbi for the moment)
  341. int beam_size = 500); // Size of the beam in Beam Search algorithm
  342. CV_WRAP static Ptr<OCRBeamSearchDecoder> create(const Ptr<OCRBeamSearchDecoder::ClassifierCallback> classifier, // The character classifier with built in feature extractor
  343. const String& vocabulary, // The language vocabulary (chars when ascii english text)
  344. // size() must be equal to the number of classes
  345. InputArray transition_probabilities_table, // Table with transition probabilities between character pairs
  346. // cols == rows == vocabulari.size()
  347. InputArray emission_probabilities_table, // Table with observation emission probabilities
  348. // cols == rows == vocabulari.size()
  349. int mode = OCR_DECODER_VITERBI, // HMM Decoding algorithm (only Viterbi for the moment)
  350. int beam_size = 500); // Size of the beam in Beam Search algorithm
  351. protected:
  352. Ptr<OCRBeamSearchDecoder::ClassifierCallback> classifier;
  353. std::string vocabulary;
  354. Mat transition_p;
  355. Mat emission_p;
  356. decoder_mode mode;
  357. int beam_size;
  358. };
  359. /** @brief Allow to implicitly load the default character classifier when creating an OCRBeamSearchDecoder object.
  360. @param filename The XML or YAML file with the classifier model (e.g. OCRBeamSearch_CNN_model_data.xml.gz)
  361. The CNN default classifier is based in the scene text recognition method proposed by Adam Coates &
  362. Andrew NG in [Coates11a]. The character classifier consists in a Single Layer Convolutional Neural Network and
  363. a linear classifier. It is applied to the input image in a sliding window fashion, providing a set of recognitions
  364. at each window location.
  365. */
  366. CV_EXPORTS_W Ptr<OCRBeamSearchDecoder::ClassifierCallback> loadOCRBeamSearchClassifierCNN(const String& filename);
  367. //! @}
  368. }
  369. }
  370. #endif // _OPENCV_TEXT_OCR_HPP_