sghoshcvc
4c9af58133
Fixed Text box demo error
2017-07-22 19:24:39 +02:00
sghoshcvc
b913cac1df
Fixed Doxygen Warning and error
2017-07-22 19:13:41 +02:00
sghoshcvc
ca2a2abed0
Removed white space errors and platform specific warnings
2017-07-22 00:24:17 +02:00
sghoshcvc
a617059f24
removed Java Wrapper
2017-07-21 13:11:58 +02:00
sghoshcvc
8cf800e650
fix a dependency bug
2017-07-21 03:09:06 +02:00
Suman Ghosh
9071ca7e2b
Merge branch 'master' into gsoc_textDetect_2017
2017-07-21 02:09:12 +02:00
sghoshcvc
73ddeab66f
simple cleaning and added comments
2017-07-19 19:01:30 +02:00
sghoshcvc
1bc908bdbd
Added python sample script
2017-07-19 18:57:16 +02:00
sghoshcvc
be395e5981
Modified the class heirarchy
2017-07-19 16:58:11 +02:00
sghoshcvc
2b8ed124f2
added instructions to build
2017-07-05 16:34:55 +02:00
Justin Hotchkiss Palermo
574e20000d
fix spelling
2017-06-29 22:11:53 -04:00
sghoshcvc
e494efb4b0
Added comments
2017-06-23 19:09:17 +02:00
sghoshcvc
fc9c41b8d4
Minor modification
2017-06-23 18:36:33 +02:00
sghoshcvc
40db962641
Add sample script
2017-06-22 19:19:43 +02:00
sghoshcvc
9ae765a197
Text detector class and Custom Image processor Class
2017-06-22 18:31:12 +02:00
Jcrist99
6c9d6d507b
Merge pull request #1210 from abratchik:contrib.java.wrapper.fix.3.2
...
fix java wrappers for ERFilter, OCRHMMDecoder, OCRBeamSearchDecoder (#1210 )
* fix java wrappers for ERFilter, OCRHMMDecoder, OCRBeamSearchDecoder
* fix comments
2017-06-08 04:54:10 +02:00
abratchik
53da3059a4
Fix java wrappers for Text module
2017-05-31 17:10:22 +04:00
Max-Wang
f1892ad916
fix erGrouping parameter error
2017-03-27 19:49:03 +08:00
Haaris
58f7afcb2d
Merge pull request #1066 from hsed:patch-1
...
fixed typo in comment (#1066 )
Line 139: Fixed typo of word "length".
2017-03-17 07:44:45 +00:00
goldstar616
478baf937f
Merge pull request #981 from goldstar616:master
...
issue #980 resolves - Some module has a round error similar to #975 . (#981 )
* round function changes to cvRound
Minor changes to fix lower visual studio version build errors.
* round function changes to cvRound
Minor changes to fix lower visual studio version build errors.
* round function changes to cvRound
Minor changes to fix lower visual studio version build errors.
2017-02-08 17:29:20 +03:00
Alexander Alekhin
864dd43635
Merge pull request #947 from alalek:c_defines
2017-01-20 16:51:40 +00:00
Alexander Alekhin
cee4edbbfd
cmake: add global defines to enable useful macros
2017-01-13 14:29:28 +03:00
logic1988
99294995f0
Merge pull request #921 from logic1988/master
...
Bug in Text module when set Optimization Level to "-Ofast" in xcode (#921 )
* Bug in Text module when set Optimization Level to "-Ofast" in xcode
Bug when set Optimization Level to "-Ofast" (Fastest, Aggressive Optimizations) in xcode, read the wrong patch_size parameters to 7 (should be 8). This bug will occured in loadOCRHMMClassifierCNN function called by example_text_character_recognition and example_text_segmented_word_recognition.
* Bug in Text module when set Optimization Level to "-Ofast" in xcode
Bug when set Optimization Level to "-Ofast" (Fastest, Aggressive Optimizations) in xcode, read the wrong patch_size parameters to 7 (should be 8). This bug will occured in loadOCRHMMClassifierCNN function called by example_text_character_recognition and example_text_segmented_word_recognition.
2017-01-06 04:23:47 +02:00
Alexander Alekhin
c028502f76
cmake: fix CMake error
...
"install DIRECTORY does not allow "COMPONENT" after PATTERN or REGEX"
2016-12-19 14:59:39 +03:00
Alexander Alekhin
adff407368
Merge pull request #880 from alalek:text_test
2016-12-02 19:57:03 +00:00
Alexander Alekhin
e1f01bafa0
text: add simple test
2016-11-29 23:26:00 +03:00
Alexander Alekhin
b5d9ca9be7
text: update cmake
2016-11-29 23:26:00 +03:00
Alexander Alekhin
31d1137890
text: minor refactoring in C++ sample
2016-11-26 01:19:18 +03:00
Alexander Alekhin
1dc84e81e5
text: refactor floodfill + findContours code patterns
2016-11-26 01:07:44 +03:00
Alexander Alekhin
d632079783
text: update detectRegions()
2016-11-26 00:24:15 +03:00
Alexander Alekhin
590dc2986d
text: fix valgrind errors, minor changes
2016-11-25 18:40:18 +03:00
Vladislav Sovrasov
bedd1f763c
Replace a dummy pointer with the smart in ERStat
2016-11-18 17:17:12 +03:00
Vladislav Sovrasov
c15051611e
Fix ERFilterNM fails on some images
2016-11-11 17:03:04 +03:00
berak
c3c9723fbd
text: fix memleak in ocr_hmm_decoder
...
changed double *p to vector<double>
2016-10-12 08:56:07 +02:00
Anguelos Nicolaou
5a3c6a3354
explicit cast to int for rowRange with size_t parameters
2016-07-21 02:31:01 +02:00
Anguelos Nicolaou
5d5ec99c37
casted size_t values to std::vector<Mat>::const_iterator and fixed unreachable code in the cpp sample
2016-07-21 00:42:52 +02:00
Anguelos Nicolaou
5c526f7951
casted size_t variables to int explicitly in the construction of as Size from two size_t, also changed rangeEnd variable to a size_t
2016-07-20 22:03:18 +02:00
Anguelos Nicolaou
fc77ceab3c
Removed const from classifer data memebers to allow for assignment operator (windows 7 warned it could not create one). Created size_t temporary variables to contain integer values so that there is never math/comparissons between ints and size_t
2016-07-20 21:29:10 +02:00
Anguelos Nicolaou
bb8a51b55d
Going back before expanding ifdef HAVE_CAFFE expantion
2016-07-20 17:56:18 +02:00
Alexander Alekhin
823dea726f
migration: github.com/opencv/opencv_contrib
2016-07-12 13:02:08 +03:00
Anguelos Nicolaou
158c8a9876
fixed doxygen warning
2016-07-12 00:05:36 +02:00
Anguelos Nicolaou
d566884a6e
fixed doxygen attempt to fix IOS and visual studio warnings
2016-07-11 21:52:46 +02:00
Anguelos Nicolaou
b7a76004f6
Attenpt to supress visual studio and IOS warnings v2
2016-07-11 20:10:32 +02:00
Anguelos Nicolaou
2b788904c3
Attenpt to supress visual studio and IOS warnings
2016-07-11 19:33:17 +02:00
Alexander Alekhin
6a5f8e4a31
Merge pull request #498 from rokm:opencv_text-warning
2016-07-11 16:35:05 +00:00
Anguelos Nicolaou
53a8677664
GSOC 2016 removed warnings from example
2016-07-07 15:59:47 +02:00
Anguelos Nicolaou
7c7ecd71d2
Fixing warnings
2016-07-07 15:42:39 +02:00
Anguelos Nicolaou
551d1e684c
GSOC 2016
...
Implemented Classifier and Wordspotter as two independent classes
2016-07-06 22:27:05 +02:00
Anguelos Nicolaou
44d7339feb
Wordspotter implemented
...
Classifier implemented as an independednt class from the worspotter.
-Works both on CPU and GPU at expected top performance of 26ms per sample on a GTX 980Ti
-Simple demo for wordspoter added for cpp
-Interactiuve demo added for python
2016-07-06 16:36:23 +02:00
StevenPuttemans
dd33354fd5
fix the CMAKE order for issue #630
...
ensure that the double pass through CMakeLists.txt files do not generate double output
2016-04-18 12:34:13 +02:00