Skip to content

Commit

Permalink
Release 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobble committed Nov 17, 2020
1 parent 3a7dd10 commit 5273232
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion openmpf
Submodule openmpf updated 128 files
2 changes: 1 addition & 1 deletion openmpf-components
Submodule openmpf-components updated 88 files
+1 −0 cpp/CMakeLists.txt
+2 −2 cpp/DarknetDetection/plugin-files/descriptor/descriptor.json
+2 −2 cpp/DlibFaceDetection/plugin-files/descriptor/descriptor.json
+58 −0 cpp/KeywordTagging/CMakeLists.txt
+55 −0 cpp/KeywordTagging/Dockerfile
+0 −0 cpp/KeywordTagging/JSON.cpp
+0 −0 cpp/KeywordTagging/JSON.h
+0 −0 cpp/KeywordTagging/JSONValue.cpp
+0 −0 cpp/KeywordTagging/JSONValue.h
+605 −0 cpp/KeywordTagging/KeywordTagging.cpp
+84 −0 cpp/KeywordTagging/KeywordTagging.h
+141 −0 cpp/KeywordTagging/README.md
+43 −0 cpp/KeywordTagging/plugin-files/config/Log4cxxConfig.xml
+1 −1 cpp/KeywordTagging/plugin-files/config/text-tags.json
+86 −0 cpp/KeywordTagging/plugin-files/descriptor/descriptor.json
+79 −0 cpp/KeywordTagging/sample_keyword_tagger.cpp
+48 −0 cpp/KeywordTagging/test/CMakeLists.txt
+105 −0 cpp/KeywordTagging/test/config/test-text-tags-foreign.json
+13 −0 cpp/KeywordTagging/test/data/eng-bul.txt
+1 −0 cpp/KeywordTagging/test/data/tags-keyword.txt
+3 −0 cpp/KeywordTagging/test/data/tags-keywordregex.txt
+1 −0 cpp/KeywordTagging/test/data/tags-regex-delimiter.txt
+1 −0 cpp/KeywordTagging/test/data/tags-regex.txt
+1 −0 cpp/KeywordTagging/test/data/test-backslash.txt
+10 −0 cpp/KeywordTagging/test/data/text-demo.txt
+214 −0 cpp/KeywordTagging/test/test_keyword_tagging.cpp
+2 −2 cpp/OalprLicensePlateTextDetection/plugin-files/descriptor/descriptor.json
+2 −2 cpp/OcvDnnDetection/plugin-files/descriptor/descriptor.json
+2 −2 cpp/OcvFaceDetection/plugin-files/descriptor/descriptor.json
+2 −2 cpp/SceneChangeDetection/plugin-files/descriptor/descriptor.json
+1 −1 cpp/TesseractOCRTextDetection/CMakeLists.txt
+1 −98 cpp/TesseractOCRTextDetection/README.md
+54 −400 cpp/TesseractOCRTextDetection/TesseractOCRTextDetection.cpp
+5 −29 cpp/TesseractOCRTextDetection/TesseractOCRTextDetection.h
+15 −26 cpp/TesseractOCRTextDetection/plugin-files/descriptor/descriptor.json
+70 −64 cpp/TesseractOCRTextDetection/test/test_tesseract_ocr_detection.cpp
+1 −1 cpp/TrtisDetection/Dockerfile
+2 −2 cpp/TrtisDetection/plugin-files/descriptor/descriptor.json
+11 −3 java/SphinxSpeechDetection/plugin-files/descriptor/descriptor.json
+2 −2 java/SphinxSpeechDetection/pom.xml
+3 −3 java/TikaImageDetection/plugin-files/descriptor/descriptor.json
+2 −2 java/TikaImageDetection/pom.xml
+12 −15 java/TikaTextDetection/plugin-files/descriptor/descriptor.json
+2 −2 java/TikaTextDetection/pom.xml
+6 −175 java/TikaTextDetection/src/main/java/org/mitre/mpf/detection/tika/TikaTextDetectionComponent.java
+3 −83 java/TikaTextDetection/src/test/java/org/mitre/mpf/detection/tika/TestTikaTextDetectionComponent.java
+1 −1 java/pom.xml
+56 −0 python/AzureFormDetection/Dockerfile
+20 −0 python/AzureFormDetection/LICENSE
+7 −0 python/AzureFormDetection/NOTICE
+96 −0 python/AzureFormDetection/README.md
+28 −0 python/AzureFormDetection/acs_form_detection_component/__init__.py
+551 −0 python/AzureFormDetection/acs_form_detection_component/acs_form_detection_component.py
+95 −0 python/AzureFormDetection/plugin-files/descriptor/descriptor.json
+70 −0 python/AzureFormDetection/sample_acs_form_detector.py
+44 −0 python/AzureFormDetection/setup.py
+27 −0 python/AzureFormDetection/tests/data/NOTICE
+ python/AzureFormDetection/tests/data/downsampling/noise.png
+12 −0 python/AzureFormDetection/tests/data/no-results/black-results.json
+ python/AzureFormDetection/tests/data/no-results/black.png
+ python/AzureFormDetection/tests/data/regular-forms/contoso-invoice.png
+ python/AzureFormDetection/tests/data/regular-forms/form-recognizer-demo-sample1.pdf
+408 −0 python/AzureFormDetection/tests/data/regular-forms/mock-custom-results.json
+ python/AzureFormDetection/tests/data/regular-forms/multi-language.pdf
+3,207 −0 python/AzureFormDetection/tests/data/regular-forms/multilanguage-results.json
+3,878 −0 python/AzureFormDetection/tests/data/regular-forms/pdf-results.json
+335 −0 python/AzureFormDetection/tests/data/regular-forms/png-results.json
+2,244 −0 python/AzureFormDetection/tests/data/regular-forms/receipt-results.json
+ python/AzureFormDetection/tests/data/regular-forms/receipt.pdf
+28 −0 python/AzureFormDetection/tests/data/upsampling/tiny-image-results.json
+ python/AzureFormDetection/tests/data/upsampling/tiny-image.png
+398 −0 python/AzureFormDetection/tests/test_acs.py
+6 −119 python/AzureOcrTextDetection/acs_ocr_component/acs_ocr_component.py
+0 −96 python/AzureOcrTextDetection/acs_ocr_component/text-tags.json
+10 −8 python/AzureOcrTextDetection/plugin-files/descriptor/descriptor.json
+3 −4 python/AzureOcrTextDetection/setup.py
+1 −58 python/AzureOcrTextDetection/tests/test_acs.py
+1 −1 python/AzureSpeechDetection/acs_speech_component/acs_speech_processor.py
+10 −2 python/AzureSpeechDetection/plugin-files/descriptor/descriptor.json
+3 −3 python/AzureSpeechDetection/setup.py
+6 −6 python/EastTextDetection/README.md
+14 −9 python/EastTextDetection/east_component/bbox_utils.py
+6 −4 python/EastTextDetection/east_component/east_component.py
+40 −24 python/EastTextDetection/east_component/east_processor.py
+13 −7 python/EastTextDetection/plugin-files/descriptor/descriptor.json
+3 −3 python/EastTextDetection/setup.py
+20 −18 python/EastTextDetection/tests/sample_east_text_detector.py
+61 −11 python/EastTextDetection/tests/test_east.py
2 changes: 1 addition & 1 deletion openmpf-docker

0 comments on commit 5273232

Please sign in to comment.