From c571b53cf62f3112b75443958e2f05f88e4ad666 Mon Sep 17 00:00:00 2001 From: Robert Sachunsky Date: Thu, 29 Jun 2023 15:18:01 +0200 Subject: [PATCH] :package: 0.1.22 --- CHANGELOG.md | 72 +++++++++++++++++++++++++++------------------------- MANIFEST.in | 3 +++ 2 files changed, 41 insertions(+), 34 deletions(-) create mode 100644 MANIFEST.in diff --git a/CHANGELOG.md b/CHANGELOG.md index 45c30f1..d88f9bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,16 @@ Change Log ========== Versioned according to [Semantic Versioning](http://semver.org/). -## Unreleased +## [Unreleased] -Added: +## [0.1.22] - 2023-06-29 + +### Added * replace-text: new processor (inverse of extract-* for text) * extract-lines: new parameter `textequiv-index` -Fixed: +### Fixed * repair/project: use minimum spanning tree when joining polygons * repair/project: ever more robustness @@ -17,21 +19,21 @@ Fixed: ## [0.1.21] - 2022-05-27 -Changed: +### Changed * extract-regions: add parameter `classes` and output COCO, too * repair/project: join polygons directly instead of alphashape ## [0.1.20] - 2022-04-27 -Fixed: +### Fixed * extract-pages: fix extraction of region JSON * repair/project: make alpha shape more robust ## [0.1.19] - 2022-04-15 -Changed: +### Changed * repair (`sanitize`): run on all region types * repair (`sanitize`): add parameter `sanitize_padding` @@ -43,30 +45,30 @@ Changed: ## [0.1.18] - 2022-03-30 -Fixed: +### Fixed * extract-lines/words: move extra parameters where they belong * extract-lines: fix regressions in v0.1.15 ## [0.1.17] - 2022-03-12 -Changed: +### Changed * project: use true alpha shape instead of convex hull ## [0.1.16] - 2022-02-21 -Fixed: +### Fixed * repair: fix `plausibilize` scope of apply-list -Changed: +### Changed * project: new processor for convex hull resegmentation ## [0.1.15] - 2022-02-17 -Changed: +### Changed * repair: `plausibilize`: both analyse & apply iff enabled * extract-lines: add parameters for output types and conditions for line extraction @@ -74,61 +76,61 @@ Changed: ## [0.1.14] - 2022-02-17 -Changed: +### Changed * repair: for non-trivial region overlaps, recurse to line level * repair: for non-trivial line overlaps, merge (if centric) or subtract ## [0.1.13] - 2021-12-11 -Fixed: +### Fixed * evaluate: multi-matching (without pycocotools) -Changed: +### Changed * evaluate: improved report format (hierarchy and names) -Added: +### Added * evaluate: over-/undersegmentation metrics, pixel-wise metrics ## [0.1.12] - 2021-12-03 -Changed: +### Changed * evaluate: basic IoU matching, Pr/Rc and mAP/mAR stats via pycocotools ## [0.1.11] - 2021-03-23 -Fixed: +### Fixed * extract-pages: `Border` has no `id` ## [0.1.10] - 2021-02-26 -Fixed: +### Fixed * extract-regions: apply `feature_filter` param -Changed: +### Changed * extract-pages: add `feature_filter` param * extract-pages: add `order` choice for `plot_segmasks` ## [0.1.9] - 2021-02-10 -Changed: +### Changed * extract-regions/lines/words/glyphs: add `feature_filter` param ## [0.1.8] - 2021-02-07 -Fixed: +### Fixed * replace-page: `getLogger` context -Changed: +### Changed * extract-words: new * extract-glyphs: new @@ -137,14 +139,14 @@ Changed: ## [0.1.7] - 2021-01-07 -Fixed: +### Fixed * repair: also ensure polygons have at least 3 points * replace-page: allow non-PAGE input files, too ## [0.1.6] - 2020-11-25 -Fixed: +### Fixed * repair: also fix negative coords, also on page level * replace-original: also remove page border/@orientation @@ -152,61 +154,63 @@ Fixed: ## [0.1.5] - 2020-11-04 -Fixed: +### Fixed * evaluate: adapt to `zip_input_files` in core -Changed: +### Changed * replace-original: delegate to `repair.ensure_consistent` * replace-page: new CLI (inverse or replace-original) ## [0.1.4] - 2020-11-04 -Changed: +### Changed * repair: fix coordinate consistency/validity errors ## [0.1.3] - 2020-09-24 -Changed: +### Changed * logging according to OCR-D/core#599 ## [0.1.2] - 2020-09-18 -Fixed: +### Fixed * repair: traverse all text regions recursively (typo) ## [0.1.1] - 2020-09-14 -Changed: +### Changed * repair: traverse all text regions recursively -Fixed: +### Fixed * repair: be robust against invalid input polygons * repair: be careful to make valid output polygons ## [0.1.0] - 2020-08-21 -Changed: +### Changed * adapt to 1-output-file-group convention, use `make_file_id` and `assert_file_grp_cardinality`, #41 -Fixed: +### Fixed * typo in `extract_lines`, #40 ## [0.0.2] - 2019-12-19 -Changed: +### Changed * further improve README +[unreleased]: ../../compare/v0.1.21...master +[0.1.22]: ../../compare/v0.1.21...v0.1.22 [0.1.21]: ../../compare/v0.1.20...v0.1.21 [0.1.20]: ../../compare/v0.1.19...v0.1.20 [0.1.19]: ../../compare/v0.1.18...v0.1.19 diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..4744cce --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include ocrd-tool.json +include README.md +include requirements.txt