diff --git a/Main.py b/Main.py index efc633f..67e23f9 100644 --- a/Main.py +++ b/Main.py @@ -10,7 +10,7 @@ threshold = (160,160,160) # Open input image in grayscale mode and get its pixels. -img = Image.open("./in/captcha.svl").convert("LA") +img = Image.open("./in/image7.png").convert("LA") # multiply each pixel by 1.2 out = img.point(lambda i: i * 1.3) @@ -33,12 +33,12 @@ newImg.putdata(newPixels) newImg.save("./out/newImage.jpg") -pytesseract.pytesseract.tesseract_cmd = r'./Tesseract-OCR/tesseract' # https://github.com/tesseract-ocr/tesseract/wiki/4.0-with-LSTM#400-alpha-for-windows +#pytesseract.pytesseract.tesseract_cmd = r'./Tesseract-OCR/tesseract' # https://github.com/tesseract-ocr/tesseract/wiki/4.0-with-LSTM#400-alpha-for-windows # Simple image to string # print(pytesseract.image_to_string(Image.open('test.png'))) print("-----------------------") # print(pytesseract.image_to_string(Image.open('captcha (2).svl'))) # https://stackoverflow.com/questions/44619077/pytesseract-ocr-multiple-config-options -print(pytesseract.image_to_string(Image.open('./out/newImage.jpg'), lang='eng', config='--psm 10 --oem 3 -c tessedit_char_whitelist=1234567890 --tessdata-dir="./Tesseract-OCR/tessdata"')) +print(pytesseract.image_to_string(Image.open('./out/newImage.jpg'), lang='eng', config='--psm 10 --oem 3 -c tessedit_char_whitelist=1234567890')) print("-----------------------") \ No newline at end of file diff --git a/Main_For_Ubuntu.py b/Main_For_Ubuntu.py deleted file mode 100644 index fcabb23..0000000 --- a/Main_For_Ubuntu.py +++ /dev/null @@ -1,44 +0,0 @@ -try: - from PIL import Image - from PIL import ImageEnhance -except ImportError: - import Image -import pytesseract # https://pypi.org/project/pytesseract/ | https://github.com/madmaze/pytesseract - -black = (0,0,0) -white = (255,255,255) -threshold = (160,160,160) - -# Open input image in grayscale mode and get its pixels. -img = Image.open("./in/captcha.svl").convert("LA") - -# multiply each pixel by 1.2 -out = img.point(lambda i: i * 1.3) - -# enh = ImageEnhance.Contrast(out) -# enh.enhance(1.3).show("30% more contrast") - -pixels = out.getdata() - -newPixels = [] -# Compare each pixel -for pixel in pixels: - if pixel < threshold: - newPixels.append(black) - else: - newPixels.append(white) - -# Create and save new image. -newImg = Image.new("RGB",out.size) -newImg.putdata(newPixels) -newImg.save("./out/newImage.jpg") - -#pytesseract.pytesseract.tesseract_cmd = r'./Tesseract-OCR/tesseract' # https://github.com/tesseract-ocr/tesseract/wiki/4.0-with-LSTM#400-alpha-for-windows - -# Simple image to string -# print(pytesseract.image_to_string(Image.open('test.png'))) -print("-----------------------") -# print(pytesseract.image_to_string(Image.open('captcha (2).svl'))) -# https://stackoverflow.com/questions/44619077/pytesseract-ocr-multiple-config-options -print(pytesseract.image_to_string(Image.open('./out/newImage.jpg'), lang='eng', config='--psm 10 --oem 3 -c tessedit_char_whitelist=1234567890 --tessdata-dir="./Tesseract-OCR/tessdata"')) -print("-----------------------") diff --git a/Tesseract-OCR/ambiguous_words.exe b/Tesseract-OCR/ambiguous_words.exe deleted file mode 100644 index 577ad84..0000000 Binary files a/Tesseract-OCR/ambiguous_words.exe and /dev/null differ diff --git a/Tesseract-OCR/classifier_tester.exe b/Tesseract-OCR/classifier_tester.exe deleted file mode 100644 index 2a52d65..0000000 Binary files a/Tesseract-OCR/classifier_tester.exe and /dev/null differ diff --git a/Tesseract-OCR/cntraining.exe b/Tesseract-OCR/cntraining.exe deleted file mode 100644 index e54f892..0000000 Binary files a/Tesseract-OCR/cntraining.exe and /dev/null differ diff --git a/Tesseract-OCR/combine_tessdata.exe b/Tesseract-OCR/combine_tessdata.exe deleted file mode 100644 index 4426dda..0000000 Binary files a/Tesseract-OCR/combine_tessdata.exe and /dev/null differ diff --git a/Tesseract-OCR/dawg2wordlist.exe b/Tesseract-OCR/dawg2wordlist.exe deleted file mode 100644 index dca15ea..0000000 Binary files a/Tesseract-OCR/dawg2wordlist.exe and /dev/null differ diff --git a/Tesseract-OCR/doc/AUTHORS b/Tesseract-OCR/doc/AUTHORS deleted file mode 100644 index 4d9c75c..0000000 --- a/Tesseract-OCR/doc/AUTHORS +++ /dev/null @@ -1,42 +0,0 @@ -Ray Smith (lead developer) -Ahmad Abdulkader -Rika Antonova -Nicholas Beato -Jeff Breidenbach -Samuel Charron -Phil Cheatle -Simon Crouch -David Eger -Sheelagh Huddleston -Dan Johnson -Rajesh Katikam -Thomas Kielbus -Dar-Shyang Lee -Zongyi (Joe) Liu -Robert Moss -Chris Newton -Michael Reimer -Marius Renn -Raquel Romano -Christy Russon -Shobhit Saxena -Mark Seaman -Faisal Shafait -Hiroshi Takenaka -Ranjith Unnikrishnan -Joern Wanke -Ping Ping Xiu -Andrew Ziem -Oscar Zuniga - -Community Contributors: -Zdenko Podobný (Maintainer) -Jim Regan (Maintainer) -James R Barlow -Amit Dovev -Martin Ettl -Tom Morris -Tobias Müller -Egor Pugin -Sundar M. Vaidya -Stefan Weil diff --git a/Tesseract-OCR/doc/COPYING b/Tesseract-OCR/doc/COPYING deleted file mode 100644 index be5ebae..0000000 --- a/Tesseract-OCR/doc/COPYING +++ /dev/null @@ -1,21 +0,0 @@ -This package contains the Tesseract Open Source OCR Engine. -Originally developed at Hewlett Packard Laboratories Bristol and -at Hewlett Packard Co, Greeley Colorado, all the code -in this distribution is now licensed under the Apache License: - -** Licensed under the Apache License, Version 2.0 (the "License"); -** you may not use this file except in compliance with the License. -** You may obtain a copy of the License at -** http://www.apache.org/licenses/LICENSE-2.0 -** Unless required by applicable law or agreed to in writing, software -** distributed under the License is distributed on an "AS IS" BASIS, -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -** See the License for the specific language governing permissions and -** limitations under the License. - - -Other Dependencies and Licenses: -================================ - -Tesseract uses Leptonica library (http://leptonica.com/) which essentially -uses a BSD 2-clause license. (http://leptonica.com/about-the-license.html) diff --git a/Tesseract-OCR/doc/README b/Tesseract-OCR/doc/README deleted file mode 100644 index 48024a9..0000000 --- a/Tesseract-OCR/doc/README +++ /dev/null @@ -1,43 +0,0 @@ -How to run UNLV tests. - -The scripts in this directory make it possible to duplicate the tests -published in the Fourth Annual Test of OCR Accuracy. -See http://www.isri.unlv.edu/downloads/AT-1995.pdf -but first you have to get the tools and data from UNLV: - -Step 1: to download the images goto -http://www.isri.unlv.edu/ISRI/OCRtk -and get 3b.tgz, Bb.tgz, Mb.tgz and Nb.tgz. - -Step 2: extract the files. It doesn't really matter where -in your filesystem you put them, but they must go under a common -root so you have directories 3, B, M and N in, for example, -/users/me/ISRI-OCRtk. - -Step 3: Reorg the files -The lack of tif extensions on the images is inconvenient, so there -is a script to reorganize the data to match the rest of the test -scripts. -cd to /users/me/ISRI-OCRtk or wherever 3, B, M and N ended up and run -/blah/blah/tesseract-ocr/testing/reorgdata.sh 3B -This makes directories doe3.3B, bus.3B, mag.3B and news.3B. -You can now get rid of 3, B, M, and N unless you want to get some of the -other scanning resolutions out of them. - -Step 4: Download the ISRI toolkit from: -http://www.isri.unlv.edu/downloads/ftk-1.0.tgz - -Step 5: If they work for you, use the binaries directly from the bin -directory and put them in tesseract-ocr/testing/unlv -otherwise build the tools for yourself and put them there. - -Step 6: cd back to your main tesseract-ocr dir and Build tesseract. - -Step 7: run testing/runalltests.sh with the root data dir and testname: -testing/runalltests.sh /users/me/ISRI-OCRtk tess2.0 -and go to the gym, have lunch etc. - -Step 8: There should be a file -testing/reports/tess2.0.summary that contains the final summarized accuracy -report and comparison with the 1995 results. - diff --git a/Tesseract-OCR/doc/eurotext.tif b/Tesseract-OCR/doc/eurotext.tif deleted file mode 100644 index 92791da..0000000 Binary files a/Tesseract-OCR/doc/eurotext.tif and /dev/null differ diff --git a/Tesseract-OCR/doc/phototest.tif b/Tesseract-OCR/doc/phototest.tif deleted file mode 100644 index adac046..0000000 Binary files a/Tesseract-OCR/doc/phototest.tif and /dev/null differ diff --git a/Tesseract-OCR/iconv.dll b/Tesseract-OCR/iconv.dll deleted file mode 100644 index 07a2f70..0000000 Binary files a/Tesseract-OCR/iconv.dll and /dev/null differ diff --git a/Tesseract-OCR/icudata51.dll b/Tesseract-OCR/icudata51.dll deleted file mode 100644 index a497c0d..0000000 Binary files a/Tesseract-OCR/icudata51.dll and /dev/null differ diff --git a/Tesseract-OCR/icui18n51.dll b/Tesseract-OCR/icui18n51.dll deleted file mode 100644 index 3fbb91a..0000000 Binary files a/Tesseract-OCR/icui18n51.dll and /dev/null differ diff --git a/Tesseract-OCR/icuuc51.dll b/Tesseract-OCR/icuuc51.dll deleted file mode 100644 index e1f9048..0000000 Binary files a/Tesseract-OCR/icuuc51.dll and /dev/null differ diff --git a/Tesseract-OCR/java/ScrollView.jar b/Tesseract-OCR/java/ScrollView.jar deleted file mode 100644 index 75ea5c1..0000000 Binary files a/Tesseract-OCR/java/ScrollView.jar and /dev/null differ diff --git a/Tesseract-OCR/java/piccolo2d-core-3.0.jar b/Tesseract-OCR/java/piccolo2d-core-3.0.jar deleted file mode 100644 index 1e2cc77..0000000 Binary files a/Tesseract-OCR/java/piccolo2d-core-3.0.jar and /dev/null differ diff --git a/Tesseract-OCR/java/piccolo2d-extras-3.0.jar b/Tesseract-OCR/java/piccolo2d-extras-3.0.jar deleted file mode 100644 index 074a61f..0000000 Binary files a/Tesseract-OCR/java/piccolo2d-extras-3.0.jar and /dev/null differ diff --git a/Tesseract-OCR/libbz2-1.dll b/Tesseract-OCR/libbz2-1.dll deleted file mode 100644 index ad15aff..0000000 Binary files a/Tesseract-OCR/libbz2-1.dll and /dev/null differ diff --git a/Tesseract-OCR/libcairo-2.dll b/Tesseract-OCR/libcairo-2.dll deleted file mode 100644 index b251fe9..0000000 Binary files a/Tesseract-OCR/libcairo-2.dll and /dev/null differ diff --git a/Tesseract-OCR/libexpat-1.dll b/Tesseract-OCR/libexpat-1.dll deleted file mode 100644 index d154a52..0000000 Binary files a/Tesseract-OCR/libexpat-1.dll and /dev/null differ diff --git a/Tesseract-OCR/libffi-6.dll b/Tesseract-OCR/libffi-6.dll deleted file mode 100644 index 82c7680..0000000 Binary files a/Tesseract-OCR/libffi-6.dll and /dev/null differ diff --git a/Tesseract-OCR/libfontconfig-1.dll b/Tesseract-OCR/libfontconfig-1.dll deleted file mode 100644 index 677c58d..0000000 Binary files a/Tesseract-OCR/libfontconfig-1.dll and /dev/null differ diff --git a/Tesseract-OCR/libfreetype-6.dll b/Tesseract-OCR/libfreetype-6.dll deleted file mode 100644 index 6898506..0000000 Binary files a/Tesseract-OCR/libfreetype-6.dll and /dev/null differ diff --git a/Tesseract-OCR/libgcc_s_sjlj-1.dll b/Tesseract-OCR/libgcc_s_sjlj-1.dll deleted file mode 100644 index 3326dc2..0000000 Binary files a/Tesseract-OCR/libgcc_s_sjlj-1.dll and /dev/null differ diff --git a/Tesseract-OCR/libgif-4.dll b/Tesseract-OCR/libgif-4.dll deleted file mode 100644 index d6826ff..0000000 Binary files a/Tesseract-OCR/libgif-4.dll and /dev/null differ diff --git a/Tesseract-OCR/libglib-2.0-0.dll b/Tesseract-OCR/libglib-2.0-0.dll deleted file mode 100644 index 8207e84..0000000 Binary files a/Tesseract-OCR/libglib-2.0-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libgobject-2.0-0.dll b/Tesseract-OCR/libgobject-2.0-0.dll deleted file mode 100644 index 14ff68e..0000000 Binary files a/Tesseract-OCR/libgobject-2.0-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libgomp-1.dll b/Tesseract-OCR/libgomp-1.dll deleted file mode 100644 index 9f5006e..0000000 Binary files a/Tesseract-OCR/libgomp-1.dll and /dev/null differ diff --git a/Tesseract-OCR/libharfbuzz-0.dll b/Tesseract-OCR/libharfbuzz-0.dll deleted file mode 100644 index c3518ae..0000000 Binary files a/Tesseract-OCR/libharfbuzz-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libintl-8.dll b/Tesseract-OCR/libintl-8.dll deleted file mode 100644 index f81748e..0000000 Binary files a/Tesseract-OCR/libintl-8.dll and /dev/null differ diff --git a/Tesseract-OCR/libjbig-2.dll b/Tesseract-OCR/libjbig-2.dll deleted file mode 100644 index 99d6346..0000000 Binary files a/Tesseract-OCR/libjbig-2.dll and /dev/null differ diff --git a/Tesseract-OCR/libjpeg-8.dll b/Tesseract-OCR/libjpeg-8.dll deleted file mode 100644 index 0512178..0000000 Binary files a/Tesseract-OCR/libjpeg-8.dll and /dev/null differ diff --git a/Tesseract-OCR/liblept-5.dll b/Tesseract-OCR/liblept-5.dll deleted file mode 100644 index 5d24f68..0000000 Binary files a/Tesseract-OCR/liblept-5.dll and /dev/null differ diff --git a/Tesseract-OCR/liblzma-5.dll b/Tesseract-OCR/liblzma-5.dll deleted file mode 100644 index c660284..0000000 Binary files a/Tesseract-OCR/liblzma-5.dll and /dev/null differ diff --git a/Tesseract-OCR/libopenjp2.dll b/Tesseract-OCR/libopenjp2.dll deleted file mode 100644 index c5cab02..0000000 Binary files a/Tesseract-OCR/libopenjp2.dll and /dev/null differ diff --git a/Tesseract-OCR/libpango-1.0-0.dll b/Tesseract-OCR/libpango-1.0-0.dll deleted file mode 100644 index 6f25a00..0000000 Binary files a/Tesseract-OCR/libpango-1.0-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libpangocairo-1.0-0.dll b/Tesseract-OCR/libpangocairo-1.0-0.dll deleted file mode 100644 index 46ee9f5..0000000 Binary files a/Tesseract-OCR/libpangocairo-1.0-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libpangoft2-1.0-0.dll b/Tesseract-OCR/libpangoft2-1.0-0.dll deleted file mode 100644 index 271c295..0000000 Binary files a/Tesseract-OCR/libpangoft2-1.0-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libpangowin32-1.0-0.dll b/Tesseract-OCR/libpangowin32-1.0-0.dll deleted file mode 100644 index eb7a29b..0000000 Binary files a/Tesseract-OCR/libpangowin32-1.0-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libpixman-1-0.dll b/Tesseract-OCR/libpixman-1-0.dll deleted file mode 100644 index 787bdd4..0000000 Binary files a/Tesseract-OCR/libpixman-1-0.dll and /dev/null differ diff --git a/Tesseract-OCR/libpng16-16.dll b/Tesseract-OCR/libpng16-16.dll deleted file mode 100644 index 59732d3..0000000 Binary files a/Tesseract-OCR/libpng16-16.dll and /dev/null differ diff --git a/Tesseract-OCR/libstdc++-6.dll b/Tesseract-OCR/libstdc++-6.dll deleted file mode 100644 index 960516b..0000000 Binary files a/Tesseract-OCR/libstdc++-6.dll and /dev/null differ diff --git a/Tesseract-OCR/libtesseract-4.dll b/Tesseract-OCR/libtesseract-4.dll deleted file mode 100644 index 3b1e9ca..0000000 Binary files a/Tesseract-OCR/libtesseract-4.dll and /dev/null differ diff --git a/Tesseract-OCR/libtiff-5.dll b/Tesseract-OCR/libtiff-5.dll deleted file mode 100644 index 7afd592..0000000 Binary files a/Tesseract-OCR/libtiff-5.dll and /dev/null differ diff --git a/Tesseract-OCR/libwebp-5.dll b/Tesseract-OCR/libwebp-5.dll deleted file mode 100644 index be1464e..0000000 Binary files a/Tesseract-OCR/libwebp-5.dll and /dev/null differ diff --git a/Tesseract-OCR/libwinpthread-1.dll b/Tesseract-OCR/libwinpthread-1.dll deleted file mode 100644 index 3c8ca45..0000000 Binary files a/Tesseract-OCR/libwinpthread-1.dll and /dev/null differ diff --git a/Tesseract-OCR/lstmeval.exe b/Tesseract-OCR/lstmeval.exe deleted file mode 100644 index 9a097fc..0000000 Binary files a/Tesseract-OCR/lstmeval.exe and /dev/null differ diff --git a/Tesseract-OCR/lstmtraining.exe b/Tesseract-OCR/lstmtraining.exe deleted file mode 100644 index 37eecaf..0000000 Binary files a/Tesseract-OCR/lstmtraining.exe and /dev/null differ diff --git a/Tesseract-OCR/mftraining.exe b/Tesseract-OCR/mftraining.exe deleted file mode 100644 index 6eb14c2..0000000 Binary files a/Tesseract-OCR/mftraining.exe and /dev/null differ diff --git a/Tesseract-OCR/set_unicharset_properties.exe b/Tesseract-OCR/set_unicharset_properties.exe deleted file mode 100644 index 3637db6..0000000 Binary files a/Tesseract-OCR/set_unicharset_properties.exe and /dev/null differ diff --git a/Tesseract-OCR/shapeclustering.exe b/Tesseract-OCR/shapeclustering.exe deleted file mode 100644 index eb245c2..0000000 Binary files a/Tesseract-OCR/shapeclustering.exe and /dev/null differ diff --git a/Tesseract-OCR/tar.exe b/Tesseract-OCR/tar.exe deleted file mode 100644 index 66ba66b..0000000 Binary files a/Tesseract-OCR/tar.exe and /dev/null differ diff --git a/Tesseract-OCR/tesseract-uninstall.exe b/Tesseract-OCR/tesseract-uninstall.exe deleted file mode 100644 index 077aba1..0000000 Binary files a/Tesseract-OCR/tesseract-uninstall.exe and /dev/null differ diff --git a/Tesseract-OCR/tesseract.exe b/Tesseract-OCR/tesseract.exe deleted file mode 100644 index 2df2e03..0000000 Binary files a/Tesseract-OCR/tesseract.exe and /dev/null differ diff --git a/Tesseract-OCR/text2image.exe b/Tesseract-OCR/text2image.exe deleted file mode 100644 index 5466039..0000000 Binary files a/Tesseract-OCR/text2image.exe and /dev/null differ diff --git a/Tesseract-OCR/unicharset_extractor.exe b/Tesseract-OCR/unicharset_extractor.exe deleted file mode 100644 index 440b840..0000000 Binary files a/Tesseract-OCR/unicharset_extractor.exe and /dev/null differ diff --git a/Tesseract-OCR/wordlist2dawg.exe b/Tesseract-OCR/wordlist2dawg.exe deleted file mode 100644 index 4a1706e..0000000 Binary files a/Tesseract-OCR/wordlist2dawg.exe and /dev/null differ diff --git a/Tesseract-OCR/zlib1.dll b/Tesseract-OCR/zlib1.dll deleted file mode 100644 index fb67471..0000000 Binary files a/Tesseract-OCR/zlib1.dll and /dev/null differ diff --git a/in/image7.png b/in/image7.png new file mode 100644 index 0000000..5dbbb68 Binary files /dev/null and b/in/image7.png differ diff --git a/Tesseract-OCR/tessdata/configs/ambigs.train b/tessdata/configs/ambigs.train similarity index 100% rename from Tesseract-OCR/tessdata/configs/ambigs.train rename to tessdata/configs/ambigs.train diff --git a/Tesseract-OCR/tessdata/configs/api_config b/tessdata/configs/api_config similarity index 100% rename from Tesseract-OCR/tessdata/configs/api_config rename to tessdata/configs/api_config diff --git a/Tesseract-OCR/tessdata/configs/bigram b/tessdata/configs/bigram similarity index 100% rename from Tesseract-OCR/tessdata/configs/bigram rename to tessdata/configs/bigram diff --git a/Tesseract-OCR/tessdata/configs/box.train b/tessdata/configs/box.train similarity index 100% rename from Tesseract-OCR/tessdata/configs/box.train rename to tessdata/configs/box.train diff --git a/Tesseract-OCR/tessdata/configs/box.train.stderr b/tessdata/configs/box.train.stderr similarity index 100% rename from Tesseract-OCR/tessdata/configs/box.train.stderr rename to tessdata/configs/box.train.stderr diff --git a/Tesseract-OCR/tessdata/configs/digits b/tessdata/configs/digits similarity index 100% rename from Tesseract-OCR/tessdata/configs/digits rename to tessdata/configs/digits diff --git a/Tesseract-OCR/tessdata/configs/hocr b/tessdata/configs/hocr similarity index 100% rename from Tesseract-OCR/tessdata/configs/hocr rename to tessdata/configs/hocr diff --git a/Tesseract-OCR/tessdata/configs/inter b/tessdata/configs/inter similarity index 100% rename from Tesseract-OCR/tessdata/configs/inter rename to tessdata/configs/inter diff --git a/Tesseract-OCR/tessdata/configs/kannada b/tessdata/configs/kannada similarity index 100% rename from Tesseract-OCR/tessdata/configs/kannada rename to tessdata/configs/kannada diff --git a/Tesseract-OCR/tessdata/configs/linebox b/tessdata/configs/linebox similarity index 100% rename from Tesseract-OCR/tessdata/configs/linebox rename to tessdata/configs/linebox diff --git a/Tesseract-OCR/tessdata/configs/logfile b/tessdata/configs/logfile similarity index 100% rename from Tesseract-OCR/tessdata/configs/logfile rename to tessdata/configs/logfile diff --git a/Tesseract-OCR/tessdata/configs/lstm.train b/tessdata/configs/lstm.train similarity index 100% rename from Tesseract-OCR/tessdata/configs/lstm.train rename to tessdata/configs/lstm.train diff --git a/Tesseract-OCR/tessdata/configs/makebox b/tessdata/configs/makebox similarity index 100% rename from Tesseract-OCR/tessdata/configs/makebox rename to tessdata/configs/makebox diff --git a/Tesseract-OCR/tessdata/configs/pdf b/tessdata/configs/pdf similarity index 100% rename from Tesseract-OCR/tessdata/configs/pdf rename to tessdata/configs/pdf diff --git a/Tesseract-OCR/tessdata/configs/quiet b/tessdata/configs/quiet similarity index 100% rename from Tesseract-OCR/tessdata/configs/quiet rename to tessdata/configs/quiet diff --git a/Tesseract-OCR/tessdata/configs/rebox b/tessdata/configs/rebox similarity index 100% rename from Tesseract-OCR/tessdata/configs/rebox rename to tessdata/configs/rebox diff --git a/Tesseract-OCR/tessdata/configs/strokewidth b/tessdata/configs/strokewidth similarity index 100% rename from Tesseract-OCR/tessdata/configs/strokewidth rename to tessdata/configs/strokewidth diff --git a/Tesseract-OCR/tessdata/configs/tsv b/tessdata/configs/tsv similarity index 100% rename from Tesseract-OCR/tessdata/configs/tsv rename to tessdata/configs/tsv diff --git a/Tesseract-OCR/tessdata/configs/txt b/tessdata/configs/txt similarity index 100% rename from Tesseract-OCR/tessdata/configs/txt rename to tessdata/configs/txt diff --git a/Tesseract-OCR/tessdata/configs/unlv b/tessdata/configs/unlv similarity index 100% rename from Tesseract-OCR/tessdata/configs/unlv rename to tessdata/configs/unlv diff --git a/Tesseract-OCR/tessdata/eng.traineddata b/tessdata/eng.traineddata similarity index 100% rename from Tesseract-OCR/tessdata/eng.traineddata rename to tessdata/eng.traineddata diff --git a/Tesseract-OCR/tessdata/eng.user-patterns b/tessdata/eng.user-patterns similarity index 100% rename from Tesseract-OCR/tessdata/eng.user-patterns rename to tessdata/eng.user-patterns diff --git a/Tesseract-OCR/tessdata/eng.user-words b/tessdata/eng.user-words similarity index 100% rename from Tesseract-OCR/tessdata/eng.user-words rename to tessdata/eng.user-words diff --git a/Tesseract-OCR/tessdata/osd.traineddata b/tessdata/osd.traineddata similarity index 100% rename from Tesseract-OCR/tessdata/osd.traineddata rename to tessdata/osd.traineddata diff --git a/Tesseract-OCR/tessdata/pdf.ttf b/tessdata/pdf.ttf similarity index 100% rename from Tesseract-OCR/tessdata/pdf.ttf rename to tessdata/pdf.ttf diff --git a/Tesseract-OCR/tessdata/por.traineddata b/tessdata/por.traineddata similarity index 100% rename from Tesseract-OCR/tessdata/por.traineddata rename to tessdata/por.traineddata diff --git a/Tesseract-OCR/tessdata/tessconfigs/batch b/tessdata/tessconfigs/batch similarity index 100% rename from Tesseract-OCR/tessdata/tessconfigs/batch rename to tessdata/tessconfigs/batch diff --git a/Tesseract-OCR/tessdata/tessconfigs/batch.nochop b/tessdata/tessconfigs/batch.nochop similarity index 100% rename from Tesseract-OCR/tessdata/tessconfigs/batch.nochop rename to tessdata/tessconfigs/batch.nochop diff --git a/Tesseract-OCR/tessdata/tessconfigs/matdemo b/tessdata/tessconfigs/matdemo similarity index 100% rename from Tesseract-OCR/tessdata/tessconfigs/matdemo rename to tessdata/tessconfigs/matdemo diff --git a/Tesseract-OCR/tessdata/tessconfigs/msdemo b/tessdata/tessconfigs/msdemo similarity index 100% rename from Tesseract-OCR/tessdata/tessconfigs/msdemo rename to tessdata/tessconfigs/msdemo diff --git a/Tesseract-OCR/tessdata/tessconfigs/nobatch b/tessdata/tessconfigs/nobatch similarity index 100% rename from Tesseract-OCR/tessdata/tessconfigs/nobatch rename to tessdata/tessconfigs/nobatch diff --git a/Tesseract-OCR/tessdata/tessconfigs/segdemo b/tessdata/tessconfigs/segdemo similarity index 100% rename from Tesseract-OCR/tessdata/tessconfigs/segdemo rename to tessdata/tessconfigs/segdemo