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 unstable/scribo has been updated
via f5a185dfd59d5ed9f804d92262899f0cada75631 (commit)
via f553aa713bf237a24615fa71bd1e21e67fe37de4 (commit)
via 78843e4f50230c6019cd151c18e27e8090a2c177 (commit)
via ddcab202ab8ccfac3b4ead5b19e69a0d0ecd58b5 (commit)
via af0fa024f48e7449fa1355c7e752d297b9fb2781 (commit)
via b8e866eb546766ab5028bc4c1f018db95dccd855 (commit)
via 0012ddf9c6f6b0e233b280f73cc79efc1feee114 (commit)
via 9cfcb85e161a9bc030cd64ce24c4fa53012b04f8 (commit)
via 59dd55445ad87980e12ad98e57f5c3ad4093637b (commit)
from 57a4952e7ad3d3abda896726c512f4e95bc504cd (commit)
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 -----------------------------------------------------------------
f5a185d Regen generated files.
f553aa7 configure.ac: Configure scribo/tests/estim.
78843e4 Compute font and boldness data.
ddcab20 mln/accu/stat/median_h.hh: Add missing operator=().
af0fa02 configure.ac: configure scribo/tests/primitive/extract.
b8e866e Add a new alignments extraction routine.
0012ddf Update dmax functors interface.
9cfcb85 Various fixes in Scribo.
59dd554 scribo/text/extract_lines_wo_merge.hh: New line extraction routine.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 12 +-
configure.ac | 2 +
milena/ChangeLog | 4 +
milena/mln/accu/stat/median_h.hh | 19 +-
scribo/ChangeLog | 144 +++
scribo/headers.mk | 13 +
scribo/scribo/core/component_features_data.hh | 68 ++
scribo/scribo/core/component_info.hh | 40 +-
scribo/scribo/core/component_set.hh | 21 +-
scribo/scribo/core/def/color_type.hh | 48 +
scribo/scribo/core/line_info.hh | 174 +++-
scribo/scribo/core/line_set.hh | 17 +
scribo/scribo/core/object_groups.hh | 14 +-
scribo/scribo/core/object_links.hh | 11 +
scribo/scribo/core/paragraph_info.hh | 102 ++-
scribo/scribo/core/paragraph_set.hh | 11 +
scribo/scribo/debug/links_image.hh | 9 +-
scribo/scribo/debug/text_color_image.hh | 100 ++
scribo/scribo/estim/components_features.hh | 169 +++
scribo/scribo/estim/font_boldness.hh | 215 ++++
scribo/scribo/estim/font_color.hh | 206 ++++
scribo/scribo/estim/internal/compute_skeleton.hh | 112 ++
scribo/scribo/filter/object_groups_small.hh | 30 +-
scribo/scribo/filter/objects_h_thick.hh | 42 +-
scribo/scribo/filter/objects_h_thin.hh | 6 +-
scribo/scribo/filter/objects_v_thick.hh | 42 +-
scribo/scribo/filter/objects_v_thin.hh | 6 +-
.../io/xml/internal/extended_page_xml_visitor.hh | 9 +-
scribo/scribo/io/xml/internal/full_xml_visitor.hh | 33 +-
scribo/scribo/preprocessing/rotate_90.hh | 2 +
scribo/scribo/primitive/extract/alignments.hh | 1106 ++++++++++++++++++++
scribo/scribo/primitive/extract/components.hh | 70 +-
scribo/scribo/primitive/extract/non_text.hh | 2 -
.../scribo/primitive/link/internal/dmax_default.hh | 16 +-
.../primitive/link/internal/dmax_functor_base.hh | 13 +-
.../scribo/primitive/link/internal/dmax_hrules.hh | 100 ++
.../link/internal/dmax_width_and_height.hh | 11 +-
.../primitive/link/internal/dmax_width_only.hh | 7 +-
.../primitive/link/internal/link_functor_base.hh | 7 +-
.../link_single_dmax_ratio_aligned_base.hh | 5 -
.../link_single_dmax_ratio_aligned_delta_base.hh | 159 +++
.../link/internal/link_single_dmax_ratio_base.hh | 3 +-
.../link/merge_double_link_closest_aligned.hh | 157 +++
scribo/scribo/text/extract_lines.hh | 30 +-
scribo/scribo/text/extract_lines_with_features.hh | 131 +++
scribo/scribo/text/extract_lines_wo_merge.hh | 189 ++++
scribo/scribo/toolchain/content_in_doc.hh | 4 +-
.../toolchain/internal/content_in_doc_functor.hh | 3 +-
scribo/src/debug/Makefile.am | 16 +
scribo/src/debug/show_components_boldness.cc | 72 ++
scribo/src/debug/show_components_color.cc | 73 ++
scribo/src/debug/show_groups_bboxes.cc | 16 +-
scribo/src/debug/show_lines_boldness.cc | 199 ++++
scribo/src/preprocessing/denoise_fg.cc | 6 +-
scribo/src/primitive/extract/Makefile.am | 11 +
scribo/src/primitive/extract/alignments.cc | 89 ++
scribo/tests/Makefile.am | 5 +-
scribo/tests/data.hh.in | 6 +-
scribo/tests/estim/Makefile.am | 29 +
scribo/tests/estim/font_boldness.cc | 46 +
scribo/tests/estim/font_color.cc | 48 +
scribo/tests/img/alignment_1.png | Bin 0 -> 3145 bytes
scribo/tests/img/alignment_2.png | Bin 0 -> 3147 bytes
scribo/tests/img/alignment_3.png | Bin 0 -> 3145 bytes
scribo/tests/img/alignment_4.png | Bin 0 -> 3155 bytes
scribo/tests/img/phillip.pbm | Bin 0 -> 1633 bytes
scribo/tests/img/phillip.ppm | 5 +
scribo/tests/primitive/Makefile.am | 4 +-
scribo/tests/primitive/extract/Makefile.am | 33 +
scribo/tests/primitive/extract/alignment_1.ref.pbm | 5 +
scribo/tests/primitive/extract/alignment_2.ref.pbm | 5 +
scribo/tests/primitive/extract/alignment_3.ref.pbm | 5 +
scribo/tests/primitive/extract/alignment_4.ref.pbm | 5 +
scribo/tests/primitive/extract/alignments.cc | 76 ++
scribo/tests/toolchain/nepomuk/Makefile.am | 2 +
scribo/tests/unit_test/unit-tests.mk | 24 +
76 files changed, 4314 insertions(+), 160 deletions(-)
create mode 100644 scribo/scribo/core/component_features_data.hh
create mode 100644 scribo/scribo/core/def/color_type.hh
create mode 100644 scribo/scribo/debug/text_color_image.hh
create mode 100644 scribo/scribo/estim/components_features.hh
create mode 100644 scribo/scribo/estim/font_boldness.hh
create mode 100644 scribo/scribo/estim/font_color.hh
create mode 100644 scribo/scribo/estim/internal/compute_skeleton.hh
create mode 100644 scribo/scribo/primitive/extract/alignments.hh
create mode 100644 scribo/scribo/primitive/link/internal/dmax_hrules.hh
create mode 100644
scribo/scribo/primitive/link/internal/link_single_dmax_ratio_aligned_delta_base.hh
create mode 100644 scribo/scribo/primitive/link/merge_double_link_closest_aligned.hh
create mode 100644 scribo/scribo/text/extract_lines_with_features.hh
create mode 100644 scribo/scribo/text/extract_lines_wo_merge.hh
create mode 100644 scribo/src/debug/show_components_boldness.cc
create mode 100644 scribo/src/debug/show_components_color.cc
create mode 100644 scribo/src/debug/show_lines_boldness.cc
create mode 100644 scribo/src/primitive/extract/alignments.cc
create mode 100644 scribo/tests/estim/Makefile.am
create mode 100644 scribo/tests/estim/font_boldness.cc
create mode 100644 scribo/tests/estim/font_color.cc
create mode 100644 scribo/tests/img/alignment_1.png
create mode 100644 scribo/tests/img/alignment_2.png
create mode 100644 scribo/tests/img/alignment_3.png
create mode 100644 scribo/tests/img/alignment_4.png
create mode 100644 scribo/tests/img/phillip.pbm
create mode 100644 scribo/tests/img/phillip.ppm
create mode 100644 scribo/tests/primitive/extract/Makefile.am
create mode 100644 scribo/tests/primitive/extract/alignment_1.ref.pbm
create mode 100644 scribo/tests/primitive/extract/alignment_2.ref.pbm
create mode 100644 scribo/tests/primitive/extract/alignment_3.ref.pbm
create mode 100644 scribo/tests/primitive/extract/alignment_4.ref.pbm
create mode 100644 scribo/tests/primitive/extract/alignments.cc
hooks/post-receive
--
Olena, a generic and efficient image processing platform