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 has been updated
via 861239963254a72f51b25bfd8323a12ff4a58b82 (commit)
via 31125795c939e4f5a1175022dc534025ad8ed179 (commit)
via 7dbcef7b638f3e0a133551a7b5a0c81b8326e979 (commit)
from e2e8ec06e477c50bb1a3448650b43dc400ec4b46 (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 -----------------------------------------------------------------
8612399 distrib/macports/Portfile.in: Fix maintainers field.
3112579 lrde-scmstats.sh: Fix branch name ambiguities.
7dbcef7 mln/fun/v2v/rgb_to_hsl.hh: Fix constructor declaration.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 8 ++++++++
distrib/macports/Portfile.in | 2 +-
lrde-scmstats.sh | 5 ++++-
milena/ChangeLog | 4 ++++
milena/mln/fun/v2v/rgb_to_hsl.hh | 2 +-
5 files changed, 18 insertions(+), 3 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
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 apps-ismm-2009 has been updated
via d590e49dcb0541a2f964fbbc10032fa3ffcc260b (commit)
from 4649bd3bb8ff982893c774075f03d937fe3d995b (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 -----------------------------------------------------------------
d590e49 Honor a precondition in classification examples (ISMM 2009).
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 11 +++++++++++
.../papers/levillain.09.ismm/classif-1complex.cc | 2 +-
.../apps/papers/levillain.09.ismm/classif-graph.cc | 2 +-
3 files changed, 13 insertions(+), 2 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
* apps/papers/levillain.09.ismm/classif-graph.cc,
* apps/papers/levillain.09.ismm/classif-1complex.cc:
Do not use a value outside the range [0, nbasins] in `canvas_wst'
to prevent a failed precondition in labeling::colorize (when
NDEBUG is not defined).
Reported by David Coeurjolly <david.coeurjolly at liris.cnrs.fr>.
---
milena/ChangeLog | 11 +++++++++++
.../papers/levillain.09.ismm/classif-1complex.cc | 2 +-
.../apps/papers/levillain.09.ismm/classif-graph.cc | 2 +-
3 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index bad4207..295f398 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,3 +1,14 @@
+2011-11-24 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Honor a precondition in classification examples (ISMM 2009).
+
+ * apps/papers/levillain.09.ismm/classif-graph.cc,
+ * apps/papers/levillain.09.ismm/classif-1complex.cc:
+ Do not use a value outside the range [0, nbasins] in `canvas_wst'
+ to prevent a failed precondition in labeling::colorize (when
+ NDEBUG is not defined).
+ Reported by David Coeurjolly <david.coeurjolly at liris.cnrs.fr>.
+
2011-10-11 Roland Levillain <roland(a)lrde.epita.fr>
Graph-based version of the classification example.
diff --git a/milena/apps/papers/levillain.09.ismm/classif-1complex.cc b/milena/apps/papers/levillain.09.ismm/classif-1complex.cc
index 43853e3..674b392 100644
--- a/milena/apps/papers/levillain.09.ismm/classif-1complex.cc
+++ b/milena/apps/papers/levillain.09.ismm/classif-1complex.cc
@@ -281,7 +281,7 @@ main(int argc, char* argv[])
// Output image showing the results of the above chain on an image
// similar to the input.
image2d<int_u8> canvas_wst(seeds.domain());
- data::fill(canvas_wst, 255);
+ data::fill(canvas_wst, 0);
// Iterator on the edges (1-faces) of WST_IMA.
p_n_faces_fwd_piter<D, G> e(wst_ima.domain(), 1);
diff --git a/milena/apps/papers/levillain.09.ismm/classif-graph.cc b/milena/apps/papers/levillain.09.ismm/classif-graph.cc
index 36a6369..f832c11 100644
--- a/milena/apps/papers/levillain.09.ismm/classif-graph.cc
+++ b/milena/apps/papers/levillain.09.ismm/classif-graph.cc
@@ -267,7 +267,7 @@ main(int argc, char* argv[])
// Output image showing the results of the above chain on an image
// similar to the input.
image2d<int_u8> canvas_wst(seeds.domain());
- data::fill(canvas_wst, 255);
+ data::fill(canvas_wst, 0);
// Iterator on (the edges of) WST_IMA.
mln_piter_(wst_ima_t) e(wst_ima.domain());
--
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 unstable/scribo has been updated
via 54defbbea0f22afc1413698b007cd6457d245f40 (commit)
via d5de13336922ea9fe734e176b0f25a22e895d302 (commit)
via e2e8ec06e477c50bb1a3448650b43dc400ec4b46 (commit)
from 7307887029d66c125b3fc70de134e40913814c30 (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 -----------------------------------------------------------------
54defbb New routine in Milena.
d5de133 Merge branch 'next' into unstable/scribo
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 36 +++
milena/mln/canvas/browsing/snake_vert.hh | 2 +-
milena/mln/data/compute_in_window.hh | 248 ++++++++++++++++++++
milena/mln/fun/v2v/hsi_to_rgb.hh | 2 +-
milena/mln/literal/grays.hh | 3 -
milena/tests/data/Makefile.am | 2 +
...ithout_localization.cc => compute_in_window.cc} | 66 +++---
7 files changed, 320 insertions(+), 39 deletions(-)
create mode 100644 milena/mln/data/compute_in_window.hh
copy milena/tests/data/{paste_without_localization.cc => compute_in_window.cc} (61%)
hooks/post-receive
--
Olena, a generic and efficient image processing platform