---
ChangeLog | 4 ++++
bootstrap | 6 +++++-
2 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f62ded0..3ec2a71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2011-09-15 Guillaume Lazzara <z(a)lrde.epita.fr>
+ * bootstrap: Fix minimum required version for convert.
+
+2011-09-15 Guillaume Lazzara <z(a)lrde.epita.fr>
+
* configure.ac: Handle both GraphicsMagick and ImageMagick.
2011-09-15 Guillaume Lazzara <z(a)lrde.epita.fr>
diff --git a/bootstrap b/bootstrap
index 6a68272..481a93e 100755
--- a/bootstrap
+++ b/bootstrap
@@ -154,7 +154,11 @@ export LIBTOOLIZE=$libtoolize
require $libtoolize 1.5.22
require doxygen 1.5.6
-require convert 6.3.7
+# We used to require `convert' from ImageMagick 6.3.7, but `convert'
+# from GraphicsMagick 1.3.12 is also fine. Use that later revision
+# number even if ImageMagick is actually used so as to be compatible
+# with both implementations.
+require convert 1.3.12 -version
require hevea 1.10 -version
--
1.7.2.5
---
scribo/ChangeLog | 4 +++
scribo/README | 55 ++++++++++++++++++++++++++++++++++++++++++-----------
2 files changed, 47 insertions(+), 12 deletions(-)
diff --git a/scribo/ChangeLog b/scribo/ChangeLog
index fb44bec..ab8c4c7 100644
--- a/scribo/ChangeLog
+++ b/scribo/ChangeLog
@@ -1,5 +1,9 @@
2011-09-13 Guillaume Lazzara <z(a)lrde.epita.fr>
+ * README: Add more information.
+
+2011-09-13 Guillaume Lazzara <z(a)lrde.epita.fr>
+
* demo/viewer/main.cc: Fix an issue with Tesseract 2.x and
specific locales.
diff --git a/scribo/README b/scribo/README
index 8506c66..84fe60a 100644
--- a/scribo/README
+++ b/scribo/README
@@ -1,4 +1,5 @@
-Copyright (C) 2009, 2010 EPITA Research and Development Laboratory (LRDE)
+Copyright (C) 2009, 2010, 2011 EPITA Research and Development
+Laboratory (LRDE)
This file is part of Scribo.
@@ -33,20 +34,50 @@ Scribo aims to provide tools for Document Image Analysis (DIA).
demo/
- demat
- Sample GUI used to retrieve text from a whole document or a
- region of interest.
-
- wizard
- Sample GUI used to retrieve text from a whole document or a
- region of interest.
-
- tip
- Sample GUI used to display text localization in picture results.
+ viewer/
+ GUI for analyzing a document and save it as PDF or HTML.
+ xml2doc/
+ Command line tool to convert a document image and its
+ content analysis to PDF or HTML.
scribo/
The C++ headers of Scribo.
src/
- Various small tools related to DIA. See src/README.
\ No newline at end of file
+ Various small tools related to DIA. See src/README.
+
+
+============
+Dependencies
+============
+
+In order to use all the features provided by Scribo, the following
+dependencies should be installed :
+
+- Qt 4.x
+- xsltproc
+- fop
+- GraphicsMagick++ or ImageMagick++
+- Tesseract 2.x or 3.x (strongly recommended)
+
+Warning: Tesseract 2.x is still supported however, you may encounter
+crashes because of bugs with Tesseract and specific locales. Moreover,
+results quality is far from what it can be expected with version
+3.x. Thus, we strongly advise you to use Tesseract 3.x if possible.
+
+
+============
+KNOWN ISSUES
+============
+
+- Tesseract 2.x may cause crashes with specific system locales. It is
+ fixed in Tesseract 3.x
+
+- Apple's GCC (llvm-{gcc,g++} 4.2) compiler provided with Mac OS X
+ Lion (10.7.0) has some trouble with strict aliasing and our code. If
+ you encounter any crashes or strange behaviors, try compiling with
+ -fno-strict-aliasing flag.
+
+- On Mac OS X Lion (10.7.0) prefer using GraphicsMagick++ instead of
+ ImageMagick++. The latter may cause crashes.
\ No newline at end of file
--
1.7.2.5
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 next-next has been updated
via e80b2c3d8bb12a622721384de6c202d81be09575 (commit)
via 23e94fc9b9b5c330175c666a775002dd5213e105 (commit)
from 7b475d5b5b1460d20193d9812ceb68c74ff8f5ad (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 -----------------------------------------------------------------
e80b2c3 Update SCRIBO tests w.r.t. the new version of lena.pgm.
23e94fc Update Milena tests w.r.t. the new version of lena.pgm.
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 6 ++++++
milena/tests/linear/log.cc | 4 ++--
scribo/ChangeLog | 8 ++++++++
scribo/tests/binarization/sauvola.ref.pbm | Bin 32884 -> 32884 bytes
scribo/tests/binarization/sauvola_ms.ref.pbm | Bin 32884 -> 32884 bytes
5 files changed, 16 insertions(+), 2 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform