
* headers.mk, * tests/unit_test/unit-tests.mk: Regen. --- milena/ChangeLog | 7 +++++++ milena/headers.mk | 7 ++++++- milena/tests/unit_test/unit-tests.mk | 10 +++++++++- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index a56d47d..549ea7b 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,5 +1,12 @@ 2010-11-15 Guillaume Lazzara <z@lrde.epita.fr> + Regen mk files in Milena. + + * headers.mk, + * tests/unit_test/unit-tests.mk: Regen. + +2010-11-15 Guillaume Lazzara <z@lrde.epita.fr> + Introduce world::rgb::invert. * mln/world/rgb/invert.hh, diff --git a/milena/headers.mk b/milena/headers.mk index f986150..3d897e3 100644 --- a/milena/headers.mk +++ b/milena/headers.mk @@ -49,6 +49,7 @@ mln/accu/site_set/rectangularity.hh \ mln/accu/stat/all.hh \ mln/accu/stat/deviation.hh \ mln/accu/stat/essential.hh \ +mln/accu/stat/histo3d_rgb.hh \ mln/accu/stat/max.hh \ mln/accu/stat/max_h.hh \ mln/accu/stat/mean.hh \ @@ -141,6 +142,7 @@ mln/canvas/morpho/all.hh \ mln/canvas/morpho/attribute_filter.hh \ mln/canvas/morpho/essential.hh \ mln/canvas/morpho/internal/find_root.hh \ +mln/clustering/kmean_rgb.hh \ mln/convert/all.hh \ mln/convert/essential.hh \ mln/convert/from_to.hh \ @@ -556,6 +558,7 @@ mln/fun/v2v/linear.hh \ mln/fun/v2v/norm.hh \ mln/fun/v2v/projection.hh \ mln/fun/v2v/qt_rgb_to_int_u.hh \ +mln/fun/v2v/rgb8_to_rgbn.hh \ mln/fun/v2v/rgb_to_int_u.hh \ mln/fun/v2v/saturate.hh \ mln/fun/v2v/wrap.hh \ @@ -1284,7 +1287,9 @@ mln/world/inter_pixel/immerse.hh \ mln/world/inter_pixel/is_pixel.hh \ mln/world/inter_pixel/is_separator.hh \ mln/world/inter_pixel/neighb2d.hh \ -mln/world/inter_pixel/separator_to_pixels.hh +mln/world/inter_pixel/separator_to_pixels.hh \ +mln/world/rgb/invert.hh \ +mln/world/rgb/invert.spe.hh #<<lrde nobase_include_HEADERS += \ diff --git a/milena/tests/unit_test/unit-tests.mk b/milena/tests/unit_test/unit-tests.mk index c5dba4c..5baced7 100644 --- a/milena/tests/unit_test/unit-tests.mk +++ b/milena/tests/unit_test/unit-tests.mk @@ -229,6 +229,7 @@ mln_canvas_morpho_all \ mln_canvas_morpho_attribute_filter \ mln_canvas_morpho_essential \ mln_canvas_morpho_internal_find_root \ +mln_clustering_kmean_rgb \ mln_convert_all \ mln_convert_essential \ mln_convert_from_to \ @@ -668,6 +669,7 @@ mln_fun_v2v_linear \ mln_fun_v2v_norm \ mln_fun_v2v_projection \ mln_fun_v2v_qt_rgb_to_int_u \ +mln_fun_v2v_rgb8_to_rgbn \ mln_fun_v2v_rgb_to_hsi \ mln_fun_v2v_rgb_to_hsl \ mln_fun_v2v_rgb_to_int_u \ @@ -1410,7 +1412,9 @@ mln_world_inter_pixel_immerse \ mln_world_inter_pixel_is_pixel \ mln_world_inter_pixel_is_separator \ mln_world_inter_pixel_neighb2d \ -mln_world_inter_pixel_separator_to_pixels +mln_world_inter_pixel_separator_to_pixels \ +mln_world_rgb_invert \ +mln_world_rgb_invert_spe mln_accu_all_SOURCES = mln_accu_all.cc mln_accu_center_SOURCES = mln_accu_center.cc @@ -1549,6 +1553,7 @@ mln_canvas_morpho_all_SOURCES = mln_canvas_morpho_all.cc mln_canvas_morpho_attribute_filter_SOURCES = mln_canvas_morpho_attribute_filter.cc mln_canvas_morpho_essential_SOURCES = mln_canvas_morpho_essential.cc mln_canvas_morpho_internal_find_root_SOURCES = mln_canvas_morpho_internal_find_root.cc +mln_clustering_kmean_rgb_SOURCES = mln_clustering_kmean_rgb.cc mln_convert_all_SOURCES = mln_convert_all.cc mln_convert_essential_SOURCES = mln_convert_essential.cc mln_convert_from_to_SOURCES = mln_convert_from_to.cc @@ -1988,6 +1993,7 @@ mln_fun_v2v_linear_SOURCES = mln_fun_v2v_linear.cc mln_fun_v2v_norm_SOURCES = mln_fun_v2v_norm.cc mln_fun_v2v_projection_SOURCES = mln_fun_v2v_projection.cc mln_fun_v2v_qt_rgb_to_int_u_SOURCES = mln_fun_v2v_qt_rgb_to_int_u.cc +mln_fun_v2v_rgb8_to_rgbn_SOURCES = mln_fun_v2v_rgb8_to_rgbn.cc mln_fun_v2v_rgb_to_hsi_SOURCES = mln_fun_v2v_rgb_to_hsi.cc mln_fun_v2v_rgb_to_hsl_SOURCES = mln_fun_v2v_rgb_to_hsl.cc mln_fun_v2v_rgb_to_int_u_SOURCES = mln_fun_v2v_rgb_to_int_u.cc @@ -2731,4 +2737,6 @@ mln_world_inter_pixel_is_pixel_SOURCES = mln_world_inter_pixel_is_pixel.cc mln_world_inter_pixel_is_separator_SOURCES = mln_world_inter_pixel_is_separator.cc mln_world_inter_pixel_neighb2d_SOURCES = mln_world_inter_pixel_neighb2d.cc mln_world_inter_pixel_separator_to_pixels_SOURCES = mln_world_inter_pixel_separator_to_pixels.cc +mln_world_rgb_invert_SOURCES = mln_world_rgb_invert.cc +mln_world_rgb_invert_spe_SOURCES = mln_world_rgb_invert_spe.cc -- 1.5.6.5