├── .bumpversion.cfg ├── .circleci └── config.yml ├── .dockerignore ├── .github ├── FUNDING.yaml └── workflows │ └── ci_build_test_publish.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── docs ├── .nojekyll ├── py-pagexml │ ├── .buildinfo │ ├── _modules │ │ ├── index.html │ │ ├── pagexml.html │ │ └── pagexml │ │ │ └── swigPageXML.html │ ├── _sources │ │ ├── api.rst.txt │ │ └── index.rst.txt │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Inconsolata.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── jquery-3.7.0.min.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ ├── api.html │ ├── genindex.html │ ├── index.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js └── py-textfeat │ ├── .buildinfo │ ├── _modules │ ├── index.html │ └── textfeat │ │ └── swigTextFeatExtractor.html │ ├── _sources │ ├── api.rst.txt │ └── index.rst.txt │ ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ ├── doctools.js │ ├── documentation_options.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ ├── jquery.js │ ├── js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js │ ├── api.html │ ├── genindex.html │ ├── index.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── doxy2swig └── doxy2swig.py ├── examples ├── lorem.png ├── lorem.xml └── lorem_tess.xml ├── githook-pre-commit ├── lib ├── CMakeLists.txt ├── Doxyfile ├── PageXML.cc ├── PageXML.h ├── TextFeatExtractor.cc ├── TextFeatExtractor.h ├── intimg.cc ├── intimg.h ├── mem.cc ├── mem.h └── mock_cv.h ├── py-pagexml ├── README.rst ├── docker │ ├── Dockerfile_build │ ├── Dockerfile_build.sh │ ├── Dockerfile_build_manylinux.sh │ ├── Dockerfile_runtime │ └── Dockerfile_runtime.sh ├── examples ├── pagexml │ ├── PageXML.cc │ ├── PageXML.h │ ├── PageXML.i │ ├── PageXML_doxy2swig.i │ ├── __init__.py │ ├── mock_cv.h │ ├── mock_cv.i │ └── xsd ├── pagexml_tests │ ├── __init__.py │ ├── __main__.py │ ├── basic_tests.py │ ├── examples │ ├── groups_tests.py │ ├── ordering_tests.py │ └── textequiv_tests.py ├── setup.cfg ├── setup.py └── sphinx │ ├── api.rst │ ├── conf.py │ └── index.rst ├── py-textfeat ├── README.md ├── setup.cfg ├── setup.py ├── sphinx │ ├── api.rst │ ├── conf.py │ └── index.rst └── textfeat │ ├── PageXML.h │ ├── TextFeatExtractor.cc │ ├── TextFeatExtractor.h │ ├── TextFeatExtractor.i │ ├── TextFeatExtractor_doxy2swig.i │ ├── __init__.py │ ├── bin │ └── textfeats.py │ ├── intimg.cc │ ├── intimg.h │ ├── legacy.py │ ├── mem.cc │ └── mem.h └── xsd ├── pagecontent_omnius.xsd └── pagecontent_searchink.xsd /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: mauvilsa 2 | -------------------------------------------------------------------------------- /.github/workflows/ci_build_test_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/.github/workflows/ci_build_test_publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/py-pagexml/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/.buildinfo -------------------------------------------------------------------------------- /docs/py-pagexml/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_modules/index.html -------------------------------------------------------------------------------- /docs/py-pagexml/_modules/pagexml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_modules/pagexml.html -------------------------------------------------------------------------------- /docs/py-pagexml/_modules/pagexml/swigPageXML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_modules/pagexml/swigPageXML.html -------------------------------------------------------------------------------- /docs/py-pagexml/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_sources/api.rst.txt -------------------------------------------------------------------------------- /docs/py-pagexml/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/py-pagexml/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/py-pagexml/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/basic.css -------------------------------------------------------------------------------- /docs/py-pagexml/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/comment-close.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/comment.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/py-pagexml/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/css/theme.css -------------------------------------------------------------------------------- /docs/py-pagexml/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/doctools.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/down.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/file.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/py-pagexml/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/py-pagexml/_static/jquery-3.7.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/jquery-3.7.0.min.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/jquery.js: -------------------------------------------------------------------------------- 1 | jquery-3.7.0.min.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/js/theme.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/language_data.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/minus.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/plus.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/pygments.css -------------------------------------------------------------------------------- /docs/py-pagexml/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/searchtools.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/underscore.js -------------------------------------------------------------------------------- /docs/py-pagexml/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/up.png -------------------------------------------------------------------------------- /docs/py-pagexml/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/_static/websupport.js -------------------------------------------------------------------------------- /docs/py-pagexml/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/api.html -------------------------------------------------------------------------------- /docs/py-pagexml/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/genindex.html -------------------------------------------------------------------------------- /docs/py-pagexml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/index.html -------------------------------------------------------------------------------- /docs/py-pagexml/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/objects.inv -------------------------------------------------------------------------------- /docs/py-pagexml/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/py-modindex.html -------------------------------------------------------------------------------- /docs/py-pagexml/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/search.html -------------------------------------------------------------------------------- /docs/py-pagexml/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-pagexml/searchindex.js -------------------------------------------------------------------------------- /docs/py-textfeat/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/.buildinfo -------------------------------------------------------------------------------- /docs/py-textfeat/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/_modules/index.html -------------------------------------------------------------------------------- /docs/py-textfeat/_modules/textfeat/swigTextFeatExtractor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/_modules/textfeat/swigTextFeatExtractor.html -------------------------------------------------------------------------------- /docs/py-textfeat/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/_sources/api.rst.txt -------------------------------------------------------------------------------- /docs/py-textfeat/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/py-textfeat/_static/ajax-loader.gif: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/py-textfeat/_static/basic.css: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/basic.css -------------------------------------------------------------------------------- /docs/py-textfeat/_static/comment-bright.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/comment-close.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/comment-close.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/comment.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/comment.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/css: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/css -------------------------------------------------------------------------------- /docs/py-textfeat/_static/doctools.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/doctools.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/down-pressed.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/down.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/down.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/file.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/file.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/fonts: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/fonts -------------------------------------------------------------------------------- /docs/py-textfeat/_static/jquery.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/jquery.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/language_data.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/language_data.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/minus.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/minus.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/plus.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/plus.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/pygments.css: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/pygments.css -------------------------------------------------------------------------------- /docs/py-textfeat/_static/searchtools.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/searchtools.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/underscore.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/underscore.js -------------------------------------------------------------------------------- /docs/py-textfeat/_static/up-pressed.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/up.png: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/up.png -------------------------------------------------------------------------------- /docs/py-textfeat/_static/websupport.js: -------------------------------------------------------------------------------- 1 | ../../py-pagexml/_static/websupport.js -------------------------------------------------------------------------------- /docs/py-textfeat/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/api.html -------------------------------------------------------------------------------- /docs/py-textfeat/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/genindex.html -------------------------------------------------------------------------------- /docs/py-textfeat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/index.html -------------------------------------------------------------------------------- /docs/py-textfeat/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/objects.inv -------------------------------------------------------------------------------- /docs/py-textfeat/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/py-modindex.html -------------------------------------------------------------------------------- /docs/py-textfeat/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/search.html -------------------------------------------------------------------------------- /docs/py-textfeat/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/docs/py-textfeat/searchindex.js -------------------------------------------------------------------------------- /doxy2swig/doxy2swig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/doxy2swig/doxy2swig.py -------------------------------------------------------------------------------- /examples/lorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/examples/lorem.png -------------------------------------------------------------------------------- /examples/lorem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/examples/lorem.xml -------------------------------------------------------------------------------- /examples/lorem_tess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/examples/lorem_tess.xml -------------------------------------------------------------------------------- /githook-pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/githook-pre-commit -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/Doxyfile -------------------------------------------------------------------------------- /lib/PageXML.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/PageXML.cc -------------------------------------------------------------------------------- /lib/PageXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/PageXML.h -------------------------------------------------------------------------------- /lib/TextFeatExtractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/TextFeatExtractor.cc -------------------------------------------------------------------------------- /lib/TextFeatExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/TextFeatExtractor.h -------------------------------------------------------------------------------- /lib/intimg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/intimg.cc -------------------------------------------------------------------------------- /lib/intimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/intimg.h -------------------------------------------------------------------------------- /lib/mem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/mem.cc -------------------------------------------------------------------------------- /lib/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/mem.h -------------------------------------------------------------------------------- /lib/mock_cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/lib/mock_cv.h -------------------------------------------------------------------------------- /py-pagexml/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/README.rst -------------------------------------------------------------------------------- /py-pagexml/docker/Dockerfile_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/docker/Dockerfile_build -------------------------------------------------------------------------------- /py-pagexml/docker/Dockerfile_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/docker/Dockerfile_build.sh -------------------------------------------------------------------------------- /py-pagexml/docker/Dockerfile_build_manylinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/docker/Dockerfile_build_manylinux.sh -------------------------------------------------------------------------------- /py-pagexml/docker/Dockerfile_runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/docker/Dockerfile_runtime -------------------------------------------------------------------------------- /py-pagexml/docker/Dockerfile_runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/docker/Dockerfile_runtime.sh -------------------------------------------------------------------------------- /py-pagexml/examples: -------------------------------------------------------------------------------- 1 | ../examples -------------------------------------------------------------------------------- /py-pagexml/pagexml/PageXML.cc: -------------------------------------------------------------------------------- 1 | ../../lib/PageXML.cc -------------------------------------------------------------------------------- /py-pagexml/pagexml/PageXML.h: -------------------------------------------------------------------------------- 1 | ../../lib/PageXML.h -------------------------------------------------------------------------------- /py-pagexml/pagexml/PageXML.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml/PageXML.i -------------------------------------------------------------------------------- /py-pagexml/pagexml/PageXML_doxy2swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml/PageXML_doxy2swig.i -------------------------------------------------------------------------------- /py-pagexml/pagexml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml/__init__.py -------------------------------------------------------------------------------- /py-pagexml/pagexml/mock_cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml/mock_cv.h -------------------------------------------------------------------------------- /py-pagexml/pagexml/mock_cv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml/mock_cv.i -------------------------------------------------------------------------------- /py-pagexml/pagexml/xsd: -------------------------------------------------------------------------------- 1 | ../../xsd -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml_tests/__main__.py -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/basic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml_tests/basic_tests.py -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/examples: -------------------------------------------------------------------------------- 1 | ../../examples -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/groups_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml_tests/groups_tests.py -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/ordering_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml_tests/ordering_tests.py -------------------------------------------------------------------------------- /py-pagexml/pagexml_tests/textequiv_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/pagexml_tests/textequiv_tests.py -------------------------------------------------------------------------------- /py-pagexml/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/setup.cfg -------------------------------------------------------------------------------- /py-pagexml/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/setup.py -------------------------------------------------------------------------------- /py-pagexml/sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/sphinx/api.rst -------------------------------------------------------------------------------- /py-pagexml/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/sphinx/conf.py -------------------------------------------------------------------------------- /py-pagexml/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-pagexml/sphinx/index.rst -------------------------------------------------------------------------------- /py-textfeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/README.md -------------------------------------------------------------------------------- /py-textfeat/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/setup.cfg -------------------------------------------------------------------------------- /py-textfeat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/setup.py -------------------------------------------------------------------------------- /py-textfeat/sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/sphinx/api.rst -------------------------------------------------------------------------------- /py-textfeat/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/sphinx/conf.py -------------------------------------------------------------------------------- /py-textfeat/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/sphinx/index.rst -------------------------------------------------------------------------------- /py-textfeat/textfeat/PageXML.h: -------------------------------------------------------------------------------- 1 | ../../lib/PageXML.h -------------------------------------------------------------------------------- /py-textfeat/textfeat/TextFeatExtractor.cc: -------------------------------------------------------------------------------- 1 | ../../lib/TextFeatExtractor.cc -------------------------------------------------------------------------------- /py-textfeat/textfeat/TextFeatExtractor.h: -------------------------------------------------------------------------------- 1 | ../../lib/TextFeatExtractor.h -------------------------------------------------------------------------------- /py-textfeat/textfeat/TextFeatExtractor.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/textfeat/TextFeatExtractor.i -------------------------------------------------------------------------------- /py-textfeat/textfeat/TextFeatExtractor_doxy2swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/textfeat/TextFeatExtractor_doxy2swig.i -------------------------------------------------------------------------------- /py-textfeat/textfeat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/textfeat/__init__.py -------------------------------------------------------------------------------- /py-textfeat/textfeat/bin/textfeats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/textfeat/bin/textfeats.py -------------------------------------------------------------------------------- /py-textfeat/textfeat/intimg.cc: -------------------------------------------------------------------------------- 1 | ../../lib/intimg.cc -------------------------------------------------------------------------------- /py-textfeat/textfeat/intimg.h: -------------------------------------------------------------------------------- 1 | ../../lib/intimg.h -------------------------------------------------------------------------------- /py-textfeat/textfeat/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omni-us/pagexml/HEAD/py-textfeat/textfeat/legacy.py -------------------------------------------------------------------------------- /py-textfeat/textfeat/mem.cc: -------------------------------------------------------------------------------- 1 | ../../lib/mem.cc -------------------------------------------------------------------------------- /py-textfeat/textfeat/mem.h: -------------------------------------------------------------------------------- 1 | ../../lib/mem.h -------------------------------------------------------------------------------- /xsd/pagecontent_omnius.xsd: -------------------------------------------------------------------------------- 1 | pageformat/pagecontent_omnius.xsd -------------------------------------------------------------------------------- /xsd/pagecontent_searchink.xsd: -------------------------------------------------------------------------------- 1 | pageformat/old/pagecontent_searchink.xsd --------------------------------------------------------------------------------