#158: Clean up complex-based images
-------------------------+--------------------------------------------------
Reporter: levill_r | Owner: levill_r
Type: enhancement | Status: new
Priority: major | Milestone: Olena 1.0
Component: Milena | Version: 1.0
Keywords: |
-------------------------+--------------------------------------------------
See the `FIXME`s in files listed in wiki:Olena/ComplexBasedImages.
In particular, it seems wise to move complexes out of face handles (after
all), since it solves many problems, to the price of relaxed (dynamic)
checks (i.e., less guarantees on the validity of complex handles, psites
and iterators).
--
Ticket URL: <https://trac.lrde.org/olena/ticket/158>
Olena <http://olena.lrde.epita.fr>
Olena, a generic and efficient C++ image processing library.
https://svn.lrde.epita.fr/svn/oln/trunk/swilena
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
Fix the use of int_u8 in image2d_int_u8.i.
* image2d_int_u8.i: Inject #include "mln/value/int_u8.hh" into the
header of the generated wrapper.
image2d_int_u8.i | 5 +++++
1 file changed, 5 insertions(+)
Index: image2d_int_u8.i
--- image2d_int_u8.i (revision 2149)
+++ image2d_int_u8.i (working copy)
@@ -33,6 +33,11 @@
%module image2d_int_u8
%import "int_u8.i"
+// FIXME: The import directive does not include the `%{ ... %}' clauses.
+%{
+#include "mln/value/int_u8.hh"
+%}
+
%include "image2d.ixx"
instantiate_image2d(image2d_int_u8, mln::value::int_u<8>)