This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Olena, a generic and efficient image processing platform".
The branch icdar/hdlac2011 has been updated
discards 118f203ff8c90a367f78502c3b5ecc1883180f86 (commit)
discards 12da563c7ea1fba00e47b8cdb9adf526421218d2 (commit)
discards ebfb6d5d15d50abe54ce41cb88b243c7b03b1935 (commit)
via 58b6a662ab8baecf54514930cebe761fbd9e0e32 (commit)
via 46636f57bf3f360ae661412a50f2b2a808e14f90 (commit)
via 3a15c0260477b4d491a594cc852f8994dd1eef1d (commit)
via 532805f671d39082c9c62414be4c3266e03609bf (commit)
via 9f7843c9c01df078d600f898bf0ea5d2398aebd1 (commit)
via 0a594b3dad7545235b2997ea4ba4547363f4c1ab (commit)
via eb7b2bd077b0fc4256545e37e19af37ed9c4d25e (commit)
via e32f2ebf7a08cee79f727ac55ea902dbd58cd515 (commit)
via 1d411c7c9dd03993cf3e45f9e2835bba1d1b6e5d (commit)
via e06be54cf5ffe080b2268704caf56e2962ff4d2c (commit)
via f28dd55983ff67c868ef37ddecfc7a29da91c61f (commit)
via 02ab025088bb3639de1f2d934900311915267254 (commit)
via efa07ad7381d92b81cc58e2b0acb780f3922be6e (commit)
via 0d80a703e96d8c16a09f592f4dfa2846eadd696e (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (118f203ff8c90a367f78502c3b5ecc1883180f86)
\
N -- N -- N (58b6a662ab8baecf54514930cebe761fbd9e0e32)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
58b6a66 Improve XML output.
46636f5 Improve and cleanup Results in hdoc toolchain.
3a15c02 scribo/primitive/extract/lines_h_thick_and_thin.hh: Improve result quality.
532805f Add new hooks in toolchain functors.
9f7843c scribo/util/component_precise_outline.hh: New. Precise component outline
extraction.
0a594b3 Add new element filters.
eb7b2bd Add util::box_intersection.
e32f2eb mln/draw/site_set.hh: new.
1d411c7 Various small fixes in Scribo.
e06be54 Introduce paragraph_id_t type.
f28dd55 Share document structure data.
02ab025 Deep modifications and clean correction of the previous bug.
efa07ad Further correction of the component outlining bug.
0d80a70 Correct a bug in the compononent outlining algorithm.
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 4 +
milena/mln/draw/site_set.hh | 88 ++++++
scribo/ChangeLog | 104 +++++++
scribo/scribo/core/document.hh | 171 +++++++----
scribo/scribo/core/paragraph_info.hh | 15 +-
scribo/scribo/core/paragraph_set.hh | 49 +++-
scribo/scribo/core/tag/line.hh | 2 +-
scribo/scribo/core/tag/paragraph.hh | 43 +++
scribo/scribo/debug/line_info_image.hh | 5 +-
scribo/scribo/filter/images_in_paragraph.hh | 119 ++++++++
scribo/scribo/filter/object_links_bbox_overlap.hh | 25 +--
scribo/scribo/filter/paragraphs_bbox_overlap.hh | 176 +++++++++++
scribo/scribo/filter/paragraphs_in_image.hh | 129 ++++++++
scribo/scribo/filter/separators_in_element.hh | 151 ++++++++++
scribo/scribo/filter/separators_in_paragraph.hh | 151 ++++++++++
scribo/scribo/io/img/internal/debug_img_visitor.hh | 130 +++++----
scribo/scribo/io/img/internal/full_img_visitor.hh | 42 ++--
.../io/xml/internal/extended_page_xml_visitor.hh | 81 +++---
scribo/scribo/io/xml/internal/full_xml_visitor.hh | 79 +++---
scribo/scribo/io/xml/internal/page_xml_visitor.hh | 58 ++--
scribo/scribo/primitive/extract/alignments.hh | 12 +-
.../primitive/extract/lines_h_thick_and_thin.hh | 16 +-
scribo/scribo/primitive/extract/lines_pattern.hh | 2 +-
scribo/scribo/primitive/extract/non_text_hdoc.hh | 34 ++-
.../primitive/extract/separators_nonvisible.hh | 6 +-
.../scribo/primitive/group/from_double_link_any.hh | 7 +-
scribo/scribo/text/link_lines.hh | 2 +-
scribo/scribo/text/merging.hh | 37 ++-
scribo/scribo/text/paragraphs.hh | 18 +-
.../toolchain/internal/content_in_doc_functor.hh | 4 +
.../toolchain/internal/content_in_hdoc_functor.hh | 201 +++++++-------
.../toolchain/internal/text_in_doc_functor.hh | 4 +
.../internal/text_in_doc_preprocess_functor.hh | 53 ++++-
.../scribo/toolchain/internal/toolchain_functor.hh | 28 ++-
scribo/scribo/util/box_intersection.hh | 85 ++++++
scribo/scribo/util/component_precise_outline.hh | 309 ++++++++++++++++++++
.../primitive/extract/lines_h_thick_and_thin.cc | 1 +
scribo/tests/primitive/extract/Makefile.am | 2 +-
38 files changed, 2007 insertions(+), 436 deletions(-)
create mode 100644 milena/mln/draw/site_set.hh
create mode 100644 scribo/scribo/core/tag/paragraph.hh
create mode 100644 scribo/scribo/filter/images_in_paragraph.hh
create mode 100644 scribo/scribo/filter/paragraphs_bbox_overlap.hh
create mode 100644 scribo/scribo/filter/paragraphs_in_image.hh
create mode 100644 scribo/scribo/filter/separators_in_element.hh
create mode 100644 scribo/scribo/filter/separators_in_paragraph.hh
create mode 100644 scribo/scribo/util/box_intersection.hh
create mode 100644 scribo/scribo/util/component_precise_outline.hh
hooks/post-receive
--
Olena, a generic and efficient image processing platform