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 7b885b8910789acd2491bf66f267c27e525b500d (commit)
from 0b465a3cf769b7325cf4b4b657821da26f3e55c3 (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 -----------------------------------------------------------------
7b885b8 Simplify the implementation of mln::fun::vv2v::algebra::vec.
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 8 ++++++++
milena/mln/fun/vv2v/vec.hh | 17 ++++++++---------
2 files changed, 16 insertions(+), 9 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform
* mln/fun/vv2v/vec.hh (mln::fun::vv2v::algebra::vec::operator()):
Here.
Fix the documentation.
---
milena/ChangeLog | 8 ++++++++
milena/mln/fun/vv2v/vec.hh | 17 ++++++++---------
2 files changed, 16 insertions(+), 9 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index 65a3e0e..c0e8e2b 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,3 +1,11 @@
+2014-02-24 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Simplify the implementation of mln::fun::vv2v::algebra::vec.
+
+ * mln/fun/vv2v/vec.hh (mln::fun::vv2v::algebra::vec::operator()):
+ Here.
+ Fix the documentation.
+
2011-01-17 Roland Levillain <roland(a)lrde.epita.fr>
* apps/bench/list2table: Generate a shorter table.
diff --git a/milena/mln/fun/vv2v/vec.hh b/milena/mln/fun/vv2v/vec.hh
index 908d4ff..d77dd9b 100644
--- a/milena/mln/fun/vv2v/vec.hh
+++ b/milena/mln/fun/vv2v/vec.hh
@@ -1,4 +1,5 @@
-// Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
+// Copyright (C) 2008, 2009, 2014 EPITA Research and Development
+// Laboratory (LRDE).
//
// This file is part of Olena.
//
@@ -28,10 +29,11 @@
/// \file
///
-/// computing the vecimum of two values using a functor.
+/// Forming a vector (mln::algebra::vec) from two values of the same
+/// type using a functor.
# include <mln/core/concept/function.hh>
-# include <mln/algebra/vec.hh>
+# include <mln/make/vec.hh>
namespace mln
@@ -43,9 +45,8 @@ namespace mln
namespace vv2v
{
- // FIXME: Doc.
-
- /// \brief A functor computing the vecimum of two values.
+ /// \brief A functor forming a vector (mln::algebra::vec) from
+ /// two values of the same type.
template <typename V>
struct vec : public Function_vv2v< vec<V> >
{
@@ -61,9 +62,7 @@ namespace mln
algebra::vec<2,V>
vec<V>::operator()(const V& v1, const V& v2) const
{
- algebra::vec<2,V> tmp;
- tmp.set(v1, v2);
- return tmp;
+ return make::vec(v1, v2);
}
# endif // ! MLN_INCLUDE_ONLY
--
1.7.10.4
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 sandbox/anthony has been updated
via 586804e8c224af873afe8e13b04b841eb0ae5e22 (commit)
from bc40c1bcd0075922ff6620e7f51397abc0d79c3d (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 -----------------------------------------------------------------
586804e [SIFT] Minor fixes
-----------------------------------------------------------------------
Summary of changes:
milena/sandbox/anthony/Makefile | 2 +-
milena/sandbox/anthony/opencv/Makefile | 5 +-
milena/sandbox/anthony/opencv/main.cpp | 32 +-
milena/sandbox/anthony/src/dog-space.hh | 690 +++++++++++++++--------------
milena/sandbox/anthony/src/main.cc | 48 +-
milena/sandbox/anthony/src/scale-space.hh | 21 +-
6 files changed, 412 insertions(+), 386 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 milena-bench has been created
at 0b465a3cf769b7325cf4b4b657821da26f3e55c3 (commit)
- Log -----------------------------------------------------------------
0b465a3 apps/bench/list2table: Generate a shorter table.
a185347 apps/bench: Simplify `fast_static' and `faster_static' cases.
091e1be apps/bench: Aesthetic changes in the output of list2table.
55fd2b0 apps/bench: New (postprocessing) script: list2table.
90d29df apps/bench: Split dilation-lena-bench.
b43f22a apps/bench: New experiment: dilation-lena-bench.
27fd9c8 apps/bench: Have dilation-lena-table behave more like dilation-lena.
b368f26 apps/bench: Misc. changes.
8adc75d configure.ac (APPS_CXXFLAGS_NODEBUG): New precious variable.
26be383 apps/bench: Generate a LaTeX table from some results of dilation-lena.
a2742cb apps/bench: Split dilation-lena.cc.
1f64874 apps/bench: More comparisons (2- and 1-pointer based non-gen impl.).
f588e46 apps/bench: Run more test cases, make comparisons more robust, factor.
1e7c979 apps/bench: More comparisons on dilation (static win + single pixter).
ccb4093 apps/bench: More comparisons on dilation (variants without accu).
1681fb5 apps/bench: More comparisons on dilation (static windows and qixters).
ad8c64b apps/bench: Comparison on dilation.
d9fc1df apps/bench: More (specialized) test/bench gradient on lena.pgm.
c884804 apps/Makefile.am (SUBDIRS): Add bench.
c17395c configure.ac: Configure milena/apps/bench/Makefile.
3a88163 Start a micro benchmark about generic vs non-generic code.
-----------------------------------------------------------------------
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 next has been updated
via bb4a04478ac8fc7125c78ff145b829cba4151156 (commit)
from d2802dad212b143fe86344fc91264f9b87c5c4a3 (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 -----------------------------------------------------------------
bb4a044 Fix paths in ChangeLogs.
-----------------------------------------------------------------------
Summary of changes:
milena/ChangeLog | 6 +++---
scribo/ChangeLog | 22 +++++++++++-----------
swilena/ChangeLog | 10 +++++-----
3 files changed, 19 insertions(+), 19 deletions(-)
hooks/post-receive
--
Olena, a generic and efficient image processing platform